-        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Tag) && tags.length > 0) {
+        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Tag) && tagSelectionModel.items.length > 0) {
           
         }
-        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Correspondent) && correspondents.length > 0) {
+        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Correspondent) && correspondentSelectionModel.items.length > 0) {
           
         }
-        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.DocumentType) && documentTypes.length > 0) {
+        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.DocumentType) && documentTypeSelectionModel.items.length > 0) {
             
         }
-        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.StoragePath) && storagePaths.length > 0) {
+        @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.StoragePath) && storagePathSelectionModel.items.length > 0) {
           
 {
         value: '12',
       },
     ]
-    expect(component.correspondentSelectionModel.logicalOperator).toEqual(
-      LogicalOperator.Or
-    )
     expect(component.correspondentSelectionModel.intersection).toEqual(
       Intersection.Include
     )
@@ -681,6 +679,19 @@ describe('FilterEditorComponent', () => {
       correspondents[0],
     ])
     component.toggleCorrespondent(12) // coverage
+
+    component.filterRules = [
+      {
+        rule_type: FILTER_CORRESPONDENT,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ]
+    expect(component.correspondentSelectionModel.intersection).toEqual(
+      Intersection.Exclude
+    )
+    expect(component.correspondentSelectionModel.getExcludedItems()).toEqual([
+      { id: NEGATIVE_NULL_FILTER_VALUE, name: 'Not assigned' },
+    ])
   }))
 
   it('should ingest filter rules for has any of correspondents', fakeAsync(() => {
@@ -754,9 +765,6 @@ describe('FilterEditorComponent', () => {
         value: '22',
       },
     ]
-    expect(component.documentTypeSelectionModel.logicalOperator).toEqual(
-      LogicalOperator.Or
-    )
     expect(component.documentTypeSelectionModel.intersection).toEqual(
       Intersection.Include
     )
@@ -764,6 +772,19 @@ describe('FilterEditorComponent', () => {
       document_types[0],
     ])
     component.toggleDocumentType(22) // coverage
+
+    component.filterRules = [
+      {
+        rule_type: FILTER_DOCUMENT_TYPE,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ]
+    expect(component.documentTypeSelectionModel.intersection).toEqual(
+      Intersection.Exclude
+    )
+    expect(component.documentTypeSelectionModel.getExcludedItems()).toEqual([
+      { id: NEGATIVE_NULL_FILTER_VALUE, name: 'Not assigned' },
+    ])
   }))
 
   it('should ingest filter rules for has any of document types', fakeAsync(() => {
@@ -780,9 +801,6 @@ describe('FilterEditorComponent', () => {
         value: '23',
       },
     ]
-    expect(component.documentTypeSelectionModel.logicalOperator).toEqual(
-      LogicalOperator.Or
-    )
     expect(component.documentTypeSelectionModel.intersection).toEqual(
       Intersection.Include
     )
@@ -837,9 +855,6 @@ describe('FilterEditorComponent', () => {
         value: '32',
       },
     ]
-    expect(component.storagePathSelectionModel.logicalOperator).toEqual(
-      LogicalOperator.Or
-    )
     expect(component.storagePathSelectionModel.intersection).toEqual(
       Intersection.Include
     )
@@ -847,6 +862,19 @@ describe('FilterEditorComponent', () => {
       storage_paths[0],
     ])
     component.toggleStoragePath(32) // coverage
+
+    component.filterRules = [
+      {
+        rule_type: FILTER_STORAGE_PATH,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ]
+    expect(component.storagePathSelectionModel.intersection).toEqual(
+      Intersection.Exclude
+    )
+    expect(component.storagePathSelectionModel.getExcludedItems()).toEqual([
+      { id: NEGATIVE_NULL_FILTER_VALUE, name: 'Not assigned' },
+    ])
   }))
 
   it('should ingest filter rules for has any of storage paths', fakeAsync(() => {
@@ -1398,6 +1426,19 @@ describe('FilterEditorComponent', () => {
         value: null,
       },
     ])
+
+    const excludeButton = correspondentsFilterableDropdown.queryAll(
+      By.css('input[value=exclude]')
+    )[0]
+    excludeButton.nativeElement.checked = true
+    excludeButton.triggerEventHandler('change')
+    fixture.detectChanges()
+    expect(component.filterRules).toEqual([
+      {
+        rule_type: FILTER_CORRESPONDENT,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ])
   }))
 
   it('should convert user input to correct filter rules on document type selections', fakeAsync(() => {
@@ -1455,6 +1496,19 @@ describe('FilterEditorComponent', () => {
         value: null,
       },
     ])
+
+    const excludeButton = docTypesFilterableDropdown.queryAll(
+      By.css('input[value=exclude]')
+    )[0]
+    excludeButton.nativeElement.checked = true
+    excludeButton.triggerEventHandler('change')
+    fixture.detectChanges()
+    expect(component.filterRules).toEqual([
+      {
+        rule_type: FILTER_DOCUMENT_TYPE,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ])
   }))
 
   it('should convert user input to correct filter rules on storage path selections', fakeAsync(() => {
@@ -1512,6 +1566,19 @@ describe('FilterEditorComponent', () => {
         value: null,
       },
     ])
+
+    const excludeButton = storagePathsFilterableDropdown.queryAll(
+      By.css('input[value=exclude]')
+    )[0]
+    excludeButton.nativeElement.checked = true
+    excludeButton.triggerEventHandler('change')
+    fixture.detectChanges()
+    expect(component.filterRules).toEqual([
+      {
+        rule_type: FILTER_STORAGE_PATH,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ])
   }))
 
   it('should convert user input to correct filter rules on custom field selections', fakeAsync(() => {
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 debd7b4b3..88f1be48b 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
@@ -26,14 +26,12 @@ import {
   switchMap,
   takeUntil,
 } from 'rxjs/operators'
-import { Correspondent } from 'src/app/data/correspondent'
 import { CustomField } from 'src/app/data/custom-field'
 import {
   CustomFieldQueryLogicalOperator,
   CustomFieldQueryOperator,
 } from 'src/app/data/custom-field-query'
 import { Document } from 'src/app/data/document'
-import { DocumentType } from 'src/app/data/document-type'
 import { FilterRule } from 'src/app/data/filter-rule'
 import {
   FILTER_ADDED_AFTER,
@@ -75,9 +73,8 @@ import {
   FILTER_STORAGE_PATH,
   FILTER_TITLE,
   FILTER_TITLE_CONTENT,
+  NEGATIVE_NULL_FILTER_VALUE,
 } from 'src/app/data/filter-rule-type'
-import { StoragePath } from 'src/app/data/storage-path'
-import { Tag } from 'src/app/data/tag'
 import {
   PermissionAction,
   PermissionType,
@@ -251,7 +248,9 @@ export class FilterEditorComponent
         case FILTER_HAS_CORRESPONDENT_ANY:
           if (rule.value) {
             return $localize`Correspondent: ${
-              this.correspondents.find((c) => c.id == +rule.value)?.name
+              this.correspondentSelectionModel.items.find(
+                (c) => c.id == +rule.value
+              )?.name
             }`
           } else {
             return $localize`Without correspondent`
@@ -261,7 +260,9 @@ export class FilterEditorComponent
         case FILTER_HAS_DOCUMENT_TYPE_ANY:
           if (rule.value) {
             return $localize`Document type: ${
-              this.documentTypes.find((dt) => dt.id == +rule.value)?.name
+              this.documentTypeSelectionModel.items.find(
+                (dt) => dt.id == +rule.value
+              )?.name
             }`
           } else {
             return $localize`Without document type`
@@ -271,7 +272,9 @@ export class FilterEditorComponent
         case FILTER_HAS_STORAGE_PATH_ANY:
           if (rule.value) {
             return $localize`Storage path: ${
-              this.storagePaths.find((sp) => sp.id == +rule.value)?.name
+              this.storagePathSelectionModel.items.find(
+                (sp) => sp.id == +rule.value
+              )?.name
             }`
           } else {
             return $localize`Without storage path`
@@ -279,7 +282,7 @@ export class FilterEditorComponent
 
         case FILTER_HAS_TAGS_ALL:
           return $localize`Tag: ${
-            this.tags.find((t) => t.id == +rule.value)?.name
+            this.tagSelectionModel.items.find((t) => t.id == +rule.value)?.name
           }`
 
         case FILTER_HAS_ANY_TAG:
@@ -326,10 +329,6 @@ export class FilterEditorComponent
   @ViewChild('textFilterInput')
   textFilterInput: ElementRef
 
-  tags: Tag[] = []
-  correspondents: Correspondent[] = []
-  documentTypes: DocumentType[] = []
-  storagePaths: StoragePath[] = []
   customFields: CustomField[] = []
 
   tagDocumentCounts: SelectionDataItem[]
@@ -370,7 +369,7 @@ export class FilterEditorComponent
     )
   }
 
-  tagSelectionModel = new FilterableDropdownSelectionModel()
+  tagSelectionModel = new FilterableDropdownSelectionModel(true)
   correspondentSelectionModel = new FilterableDropdownSelectionModel()
   documentTypeSelectionModel = new FilterableDropdownSelectionModel()
   storagePathSelectionModel = new FilterableDropdownSelectionModel()
@@ -551,6 +550,19 @@ export class FilterEditorComponent
           )
           break
         case FILTER_CORRESPONDENT:
+          this.correspondentSelectionModel.intersection =
+            rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
+              ? Intersection.Exclude
+              : Intersection.Include
+          this.correspondentSelectionModel.set(
+            rule.value ? +rule.value : null,
+            this.correspondentSelectionModel.intersection ==
+              Intersection.Include
+              ? ToggleableItemState.Selected
+              : ToggleableItemState.Excluded,
+            false
+          )
+          break
         case FILTER_HAS_CORRESPONDENT_ANY:
           this.correspondentSelectionModel.logicalOperator = LogicalOperator.Or
           this.correspondentSelectionModel.intersection = Intersection.Include
@@ -569,6 +581,18 @@ export class FilterEditorComponent
           )
           break
         case FILTER_DOCUMENT_TYPE:
+          this.documentTypeSelectionModel.intersection =
+            rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
+              ? Intersection.Exclude
+              : Intersection.Include
+          this.documentTypeSelectionModel.set(
+            rule.value ? +rule.value : null,
+            this.documentTypeSelectionModel.intersection == Intersection.Include
+              ? ToggleableItemState.Selected
+              : ToggleableItemState.Excluded,
+            false
+          )
+          break
         case FILTER_HAS_DOCUMENT_TYPE_ANY:
           this.documentTypeSelectionModel.logicalOperator = LogicalOperator.Or
           this.documentTypeSelectionModel.intersection = Intersection.Include
@@ -587,6 +611,18 @@ export class FilterEditorComponent
           )
           break
         case FILTER_STORAGE_PATH:
+          this.storagePathSelectionModel.intersection =
+            rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
+              ? Intersection.Exclude
+              : Intersection.Include
+          this.storagePathSelectionModel.set(
+            rule.value ? +rule.value : null,
+            this.storagePathSelectionModel.intersection == Intersection.Include
+              ? ToggleableItemState.Selected
+              : ToggleableItemState.Excluded,
+            false
+          )
+          break
         case FILTER_HAS_STORAGE_PATH_ANY:
           this.storagePathSelectionModel.logicalOperator = LogicalOperator.Or
           this.storagePathSelectionModel.intersection = Intersection.Include
@@ -809,9 +845,21 @@ export class FilterEditorComponent
           })
         })
     }
-    if (this.correspondentSelectionModel.isNoneSelected()) {
+    if (
+      this.correspondentSelectionModel.isNoneSelected() &&
+      this.correspondentSelectionModel.intersection == Intersection.Include
+    ) {
       filterRules.push({ rule_type: FILTER_CORRESPONDENT, value: null })
     } else {
+      if (
+        this.correspondentSelectionModel.isNoneSelected() &&
+        this.correspondentSelectionModel.intersection == Intersection.Exclude
+      ) {
+        filterRules.push({
+          rule_type: FILTER_CORRESPONDENT,
+          value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+        })
+      }
       this.correspondentSelectionModel
         .getSelectedItems()
         .forEach((correspondent) => {
@@ -822,6 +870,7 @@ export class FilterEditorComponent
         })
       this.correspondentSelectionModel
         .getExcludedItems()
+        .filter((correspondent) => correspondent.id > 0)
         .forEach((correspondent) => {
           filterRules.push({
             rule_type: FILTER_DOES_NOT_HAVE_CORRESPONDENT,
@@ -829,9 +878,21 @@ export class FilterEditorComponent
           })
         })
     }
-    if (this.documentTypeSelectionModel.isNoneSelected()) {
+    if (
+      this.documentTypeSelectionModel.isNoneSelected() &&
+      this.documentTypeSelectionModel.intersection === Intersection.Include
+    ) {
       filterRules.push({ rule_type: FILTER_DOCUMENT_TYPE, value: null })
     } else {
+      if (
+        this.documentTypeSelectionModel.isNoneSelected() &&
+        this.documentTypeSelectionModel.intersection == Intersection.Exclude
+      ) {
+        filterRules.push({
+          rule_type: FILTER_DOCUMENT_TYPE,
+          value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+        })
+      }
       this.documentTypeSelectionModel
         .getSelectedItems()
         .forEach((documentType) => {
@@ -842,6 +903,7 @@ export class FilterEditorComponent
         })
       this.documentTypeSelectionModel
         .getExcludedItems()
+        .filter((documentType) => documentType.id > 0)
         .forEach((documentType) => {
           filterRules.push({
             rule_type: FILTER_DOES_NOT_HAVE_DOCUMENT_TYPE,
@@ -849,9 +911,21 @@ export class FilterEditorComponent
           })
         })
     }
-    if (this.storagePathSelectionModel.isNoneSelected()) {
+    if (
+      this.storagePathSelectionModel.isNoneSelected() &&
+      this.storagePathSelectionModel.intersection == Intersection.Include
+    ) {
       filterRules.push({ rule_type: FILTER_STORAGE_PATH, value: null })
     } else {
+      if (
+        this.storagePathSelectionModel.isNoneSelected() &&
+        this.storagePathSelectionModel.intersection == Intersection.Exclude
+      ) {
+        filterRules.push({
+          rule_type: FILTER_STORAGE_PATH,
+          value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+        })
+      }
       this.storagePathSelectionModel
         .getSelectedItems()
         .forEach((storagePath) => {
@@ -862,6 +936,7 @@ export class FilterEditorComponent
         })
       this.storagePathSelectionModel
         .getExcludedItems()
+        .filter((storagePath) => storagePath.id > 0)
         .forEach((storagePath) => {
           filterRules.push({
             rule_type: FILTER_DOES_NOT_HAVE_STORAGE_PATH,
@@ -1062,7 +1137,7 @@ export class FilterEditorComponent
     ) {
       this.loadingCountTotal++
       this.tagService.listAll().subscribe((result) => {
-        this.tags = result.results
+        this.tagSelectionModel.items = result.results
         this.maybeCompleteLoading()
       })
     }
@@ -1074,7 +1149,7 @@ export class FilterEditorComponent
     ) {
       this.loadingCountTotal++
       this.correspondentService.listAll().subscribe((result) => {
-        this.correspondents = result.results
+        this.correspondentSelectionModel.items = result.results
         this.maybeCompleteLoading()
       })
     }
@@ -1086,7 +1161,7 @@ export class FilterEditorComponent
     ) {
       this.loadingCountTotal++
       this.documentTypeService.listAll().subscribe((result) => {
-        this.documentTypes = result.results
+        this.documentTypeSelectionModel.items = result.results
         this.maybeCompleteLoading()
       })
     }
@@ -1098,7 +1173,7 @@ export class FilterEditorComponent
     ) {
       this.loadingCountTotal++
       this.storagePathService.listAll().subscribe((result) => {
-        this.storagePaths = result.results
+        this.storagePathSelectionModel.items = result.results
         this.maybeCompleteLoading()
       })
     }
diff --git a/src-ui/src/app/data/filter-rule-type.ts b/src-ui/src/app/data/filter-rule-type.ts
index bb2bf762c..7f0f0d56d 100644
--- a/src-ui/src/app/data/filter-rule-type.ts
+++ b/src-ui/src/app/data/filter-rule-type.ts
@@ -1,5 +1,7 @@
 import { DataType } from './datatype'
 
+export const NEGATIVE_NULL_FILTER_VALUE = -1
+
 // These correspond to src/documents/models.py and changes here require a DB migration (and vice versa)
 export const FILTER_TITLE = 0
 export const FILTER_CONTENT = 1
diff --git a/src-ui/src/app/utils/query-params.spec.ts b/src-ui/src/app/utils/query-params.spec.ts
index cc91f3f6c..c22c90d11 100644
--- a/src-ui/src/app/utils/query-params.spec.ts
+++ b/src-ui/src/app/utils/query-params.spec.ts
@@ -8,6 +8,7 @@ import {
   FILTER_HAS_CUSTOM_FIELDS_ALL,
   FILTER_HAS_CUSTOM_FIELDS_ANY,
   FILTER_HAS_TAGS_ALL,
+  NEGATIVE_NULL_FILTER_VALUE,
 } from '../data/filter-rule-type'
 import {
   filterRulesFromQueryParams,
@@ -97,6 +98,16 @@ describe('QueryParams Utils', () => {
       correspondent__isnull: 1,
     })
 
+    params = queryParamsFromFilterRules([
+      {
+        rule_type: FILTER_CORRESPONDENT,
+        value: NEGATIVE_NULL_FILTER_VALUE.toString(),
+      },
+    ])
+    expect(params).toEqual({
+      correspondent__isnull: 0,
+    })
+
     params = queryParamsFromFilterRules([
       {
         rule_type: FILTER_HAS_ANY_TAG,
diff --git a/src-ui/src/app/utils/query-params.ts b/src-ui/src/app/utils/query-params.ts
index d90167c5b..27716cc2d 100644
--- a/src-ui/src/app/utils/query-params.ts
+++ b/src-ui/src/app/utils/query-params.ts
@@ -10,6 +10,7 @@ import {
   FILTER_HAS_CUSTOM_FIELDS_ANY,
   FILTER_RULE_TYPES,
   FilterRuleType,
+  NEGATIVE_NULL_FILTER_VALUE,
 } from '../data/filter-rule-type'
 import { ListViewState } from '../services/document-list-view.service'
 
@@ -113,6 +114,10 @@ export function filterRulesFromQueryParams(
           rt.isnull_filtervar == filterQueryParamName
       )
       const isNullRuleType = rule_type.isnull_filtervar == filterQueryParamName
+      const nullRuleValue =
+        queryParams.get(filterQueryParamName) == '1'
+          ? null
+          : NEGATIVE_NULL_FILTER_VALUE.toString()
       const valueURIComponent: string = queryParams.get(filterQueryParamName)
       const filterQueryParamValues: string[] = rule_type.multi
         ? valueURIComponent.split(',')
@@ -125,7 +130,7 @@ export function filterRulesFromQueryParams(
             val = val.replace('1', 'true').replace('0', 'false')
           return {
             rule_type: rule_type.id,
-            value: isNullRuleType ? null : val,
+            value: isNullRuleType ? nullRuleValue : val,
           }
         })
       )
@@ -143,6 +148,11 @@ export function queryParamsFromFilterRules(filterRules: FilterRule[]): Params {
       let ruleType = FILTER_RULE_TYPES.find((t) => t.id == rule.rule_type)
       if (ruleType.isnull_filtervar && rule.value == null) {
         params[ruleType.isnull_filtervar] = 1
+      } else if (
+        ruleType.isnull_filtervar &&
+        rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
+      ) {
+        params[ruleType.isnull_filtervar] = 0
       } else if (ruleType.multi) {
         params[ruleType.filtervar] = params[ruleType.filtervar]
           ? params[ruleType.filtervar] + ',' + rule.value
From 1456169d7facf11d3848ac56cb4b9d321c4c5bcf Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 17 Mar 2025 23:36:52 -0700
Subject: [PATCH 2/2] New Crowdin translations by GitHub Action (#9408)
Co-authored-by: Crowdin Bot 
---
 src-ui/src/locale/messages.af_ZA.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ar_AR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.be_BY.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.bg_BG.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ca_ES.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.cs_CZ.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.da_DK.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.de_DE.xlf   | 310 +++++++++---------
 src-ui/src/locale/messages.el_GR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.es_ES.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.et_EE.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.fi_FI.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.fr_FR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.he_IL.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.hr_HR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.hu_HU.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.id_ID.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.it_IT.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ja_JP.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ko_KR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.lb_LU.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.lt_LT.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.lv_LV.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ms_MY.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.nl_NL.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.no_NO.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.pl_PL.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.pt_BR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.pt_PT.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ro_RO.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.ru_RU.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.sk_SK.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.sl_SI.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.sr_CS.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.sv_SE.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.th_TH.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.tr_TR.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.uk_UA.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.vi_VN.xlf   | 420 ++++++++++++-------------
 src-ui/src/locale/messages.zh_CN.xlf   | 302 +++++++++---------
 src-ui/src/locale/messages.zh_TW.xlf   | 302 +++++++++---------
 src/locale/id_ID/LC_MESSAGES/django.po |  78 ++---
 src/locale/vi_VN/LC_MESSAGES/django.po |   2 +-
 43 files changed, 6294 insertions(+), 6294 deletions(-)
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index d7d518284..a79c5f29b 100644
--- a/src-ui/src/locale/messages.af_ZA.xlf
+++ b/src-ui/src/locale/messages.af_ZA.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Sluit
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Vorige
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Volgende
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Vorige maand
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Volgende maand
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Sluit
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Kies maand
@@ -90,7 +90,7 @@
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         “”
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         “” en “”
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          en “”
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Bevestig etikettoewysing
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Die etiket "" sal aan  gekose dokument(e) toegevoeg word.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Hierdie bewerking sal die etikette  toevoeg aan  gekose dokument(e).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Die etiket “” sal van  gekose dokument(e) verwyder word.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Hierdie bewerking sal die etikette  van  gekose dokument(e) verwyder.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Hierdie bewerking sal die etikette  toevoeg en die etikette  verwyder van  gekose dokument(e).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Bevestig korrespondenttoewysing
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Die korrespondent “” sal aan  gekose dokument(e) toegewys word.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Die korrespondent sal verwyder word van  gekose dokument(e).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Bevestig toewys van dokumenttipe
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Die dokumenttipe “” sal aan  gekose dokument(e) toegewys word.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Die dokumenttipe sal verwyder word van  gekose dokument(e).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Bevestig bergpadtoewysing
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Die bergpad “” sal aan  gekose dokument(e) toegewys word.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Die bergpad sal verwyder word van  gekose dokument(e).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Stel filters terug
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel & inhoud
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Meer soos
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         gelyk aan
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is leeg
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is nie leeg nie
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         groter as
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         kleiner as
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sonder korrespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sonder dokumenttipe
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sonder enige etiket
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Eienaar: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Eienaar nie in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Sonder ’n eienaar
       
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 045d3c686..23b50f7a5 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         إغلاق
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         السابق
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         التالي
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         الشهر السابق
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         الشهر التالي
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         إغلاق
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         تحديد الشهر
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         بحث متقدم
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         أكّد
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         غير معين
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         فتح المرشح 
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         إعادة المعالجة
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         تدوير
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         يمكن استعادة المستندات قبل حذفها نهائياً.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         نقل لسلة المهملات
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         تأكيد إعادة المعالجة
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         تأكيد التدوير
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         تصفية جهات التراسل
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         تصفية نوع الوثائق
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         تصفية مسارات التخزين
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         حقول مخصصة
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         تصفية الحقول المخصصة
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         دمج
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         يحتوي على:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         الملفات المؤرشفة
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         الملفات الأصلية
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         استخدام اسم الملف المنسق
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         خطأ أثناء تنفيذ العملية بالجملة
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" و ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          و""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         تأكيد تعيين العلامات
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         هذه العملية ستضيف العلامة "" إلى  مستند (مستندات) مختارة.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         هذه العملية ستضيف العلامات  إلى  مستند (مستندات) مختارة.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         هذه العملية ستزيل العلامة"" من  المستند (المستندات) المختارة.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         هذه العملية ستزيل العلامات  من  المستند (المستندات) المختارة.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         هذه العملية سوف تضيف العلامات  وتزيل العلامات  في  مستند(مستندات) مختارة.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         تأكيد تعيين جهة التراسل
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         ستقوم هذه العملية بتعيين جهة التراسل "" للمستند (المستندات) المحددة .
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         هذه العملية ستزيل جهة التراسل  من المستند أو المستندات المحددة.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         تأكيد تعيين نوع المستند
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         العملية ستعين نوع المستند "" إلى  مستند (مستندات) مختارة.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         هذه العملية ستزيل نوع المستند من  مستند (المستندات) مختارة.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         تأكيد تعيين مسار التخزين
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         هذه العملية ستعين مسار التخزين "" إلى  مستند (مستندات) مختارة.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         هذه العملية ستزيل مسار التخزين من  المستند(المستندات) المختارة.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         تأكيد تعيين الحقل المخصص
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         ستقوم هذه العملية بتعيين الحقل المخصص "" إلى المستند أو المستندات  المحددة.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         ستقوم هذه العملية بتعيين الحقول المخصصة {this._localizeList( changeCustomFields.itemsToAdd )} إلى  مستند (مستندات) محدد.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         ستؤدي هذه العملية إلى إزالة الحقل المخصص "" من  مستند (مستندات) محدد.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         ستؤدي هذه العملية إلى إزالة الحقول المخصصة {this._localizeList( changeCustomFields.itemsToRemove )} من  مستند (مستندات) محدد.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         ستقوم هذه العملية بتعيين الحقول المخصصة {this._localizeList( changeCustomFields.itemsToAdd )} وإزالة الحقول المخصصة {this._localizeList( changeCustomFields.itemsToRemove )} على  مستند (مستندات) محدد.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         نقل المستند (المستندات) المحددة  لسلة المهملات؟
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         ستؤدي هذه العملية إلى إعادة إنشاء ملفات الأرشيف بشكل دائم لمستند (مستندات) محدد .
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         سيتم إعادة إنشاء ملفات الأرشيف بالإعدادات الحالية.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند أو المستندات  بشكل دائم.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         تأكيد الدمج
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         ستقوم هذه العملية بدمج المستند أو المستندات  المحددة في مستند جديد.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         سيتم وضع المستند المدمج في قائمة الانتظار للاستهلاك.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         إعادة تعيين التصفيات
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         التواريخ
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         العنوان & المحتوى
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         أكثر مثله
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         يساوي
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         فارغ
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         غير فارغ
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         أكبر من
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         أقل من
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         بدون مراسل
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         بدون نوع المستند
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         بدون مسار التخزين
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         بلا أي وسم
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         طلب الحقول المخصصة
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         العنوان: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         المالك: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         المالك ليس في: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         بدون مالك
       
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index 7937fb251..3a362020c 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Закрыць
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Папярэдняя
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Наступная
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Папярэдні месяц
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Наступны месяц
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Закрыць
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Абраць месяц
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Пашыраны пошук
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Пацвердзіць
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Не прызначана
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Фільтр карэспандэнтаў
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Фільтр тыпаў дакументаў
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Фільтраваць шляхі захоўвання
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" і ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          і ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Пацвярдзіць прызначэнне тэгаў
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Гэтая аперацыя дадасць тэг "" да выбраных  дакументаў.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Гэтая аперацыя дадасць тэгі "" да выбраных  дакументаў.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Гэтая аперацыя выдаліць тэг "" з выбраных  дакументаў.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Гэтая аперацыя выдаліць тэгі "" з выбраных  дакументаў.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Гэтая аперацыя дадасць тэгі  і выдаліць тэгі  на  выбраных дакументах.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Пацвердзіць прызначэнне карэспандэнта
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Гэтая аперацыя прызначыць карэспандэнта "" абраным  дакументам.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Гэтая аперацыя выдаліць карэспандэнта з  выбраных дакументаў.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Пацвердзіце прызначэнне тыпу дакумента
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Гэтая аперацыя прысвоіць тып ""  абраным дакументам.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Гэтая аперацыя выдаліць тып з  абраных дакументаў.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Пацвердзіце прызначэнне шляху захоўвання
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Гэтая аперацыя прызначыць шлях захоўвання "" да  выбраных дакументаў.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Гэтая аперацыя выдаліць шлях захоўвання з  выбраных дакументаў.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Скінуць фільтры
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Назва & змест
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Больш падобных
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         супадае з
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         пусты
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         не пусты
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         большы за
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         менш за
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Без карэспандэнта
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Без тыпу дакумента
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Без усялякага тэга
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Назва: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index cbd9a8210..2f6cfc85f 100644
--- a/src-ui/src/locale/messages.bg_BG.xlf
+++ b/src-ui/src/locale/messages.bg_BG.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Затвори
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Назад
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Напред
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Предишен месец
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Следващ месец
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Затвори
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Изберете месец
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Подробно търсене
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Потвърди
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Не е зададен
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Филтриране на кореспонденти
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Филтриране по тип на документ
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Филтриране на пътища за съхранение
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Персонализирани полета
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Включете:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Грешка при изпълнение на групова операция
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" и ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          и ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Потвърждаване на задаването на етикети
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Тази операция ще добави етикета "" към  избрани документ(и).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Тази операция ще добави етикети "" към  избрани документ(и).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Тази операция ще премахне етикета "" към  избрани документ(и).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Тази операция ще премахне етикетите "" към  избрани документ(и).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Тази операция ще добави етикетите  и премахне етикетите   на  избраните документ(и).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Потвърждаване на задаването на кореспондент
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Тази операция ще зададе кореспонта "" към  избраните документ(и).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Тази операция ще премахне кореспонта от "" избраните документ(и).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Потвърждаване на заданието за тип документ
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Тази операция ще зададе типа документ "" към  избраните документ(и).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Тази операция ще премахне типа документ от "" избраните документ(и).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Потвърждаване на задаването на път към хранилище
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Тази операция ще зададе път към хранилище "" към  избраните документ(и).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Тази операция ще премахне пътя към хранилище от "" избраните документ(и).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Нулирай филтрите
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Заглавие & съдържание
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Още като
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         е равно на
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         е празно
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         не е празно
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         по-голямо от
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         по-малко от
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Без кореспондент
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Без тип на документа
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Без път за съхранение
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Без никакъв етикет
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Заглавие: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         Архивен номер: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Собственик: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Собственикът не е в: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Без собственик
       
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index 8b7eec9bc..14eddb234 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Tanca
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Anterior
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Següent
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mes anterior
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Proper mes
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Tanca
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Seleccioneu mes
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Cerca avançada
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirma
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         No assignat
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Obrir  filtre
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocesa
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rota
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Els documents es poden restaurar abans de l'esborrat definitiu.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Mou a la brossa
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Confirma Reprocès
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Confirma rotació
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtra corresponsals
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtra els tipus de documents
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtra ruta emmagatzematges
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Camps personalitzats
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtra camps personalitzats
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Estableix valors
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Combina
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Inclou:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Arxius arxivats
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Fitxers originals
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Utilitza nom arxiu formatat
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executant operació en massa
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" i ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          i ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirma assignació etiquetes
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Això afegirà l'etiqueta "" a  document(s) seleccionat(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Això afegirà etiqueta  a  document(s) seleccionat(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Això esborarrà etiqueta "" de  document(s) seleccionat(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Això esborrarà etiquetes  de  document(s) seleccionat(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Això afegirà les etiquetes  i eliminarà les etiquetes  de  document(s) seleccionat(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirma assignació corresponsal
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Això assignarà el corresponsal "" a  document(s) seleccionat(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Això treurà el corresponsal de  document(s) seleccionat(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirma assignació del tipus de document
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Això assignarà el tipus de document "" a  document(s) seleccionat(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         L'operació treurà el tipus de document desde  document(s) seleccionats.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirma assignació del camí d'emmagatzematge
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         L'operació assignarà el camí d'emmagatzematge "" to  document(s) seleccionats.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         L'operació esborrarà el camí d'emmagatzematge "" de document(s) seleccionats.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirma assignació camp personalitzat
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         L'operació assignarà el camp personalitzat "" a  element(s) seleccionat(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         L'operació assignarà els camps personalitzats  als  documents seleccionats.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         L'operació esborrarà el camp personalitzat  de  document(s) seleccionat(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         L'operació esborrarpa el camp personalitzat  de  document(s) seleccionat(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         L'operació assignarà els camps personalitzats  i esborrarà els camps personalitzats  de  document(s) seleccionat(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Moure  documents(s) seleccionat(s) a la brossa?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Aquesta operació recrearà els arxius arxiats per al(s)  document(s) seleccionat(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Els arxius arxivats seran regenerats amb les opcions actuals.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Aquesta operació girarà permanentment la versió original de  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Confirma combinació
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Aquesta operació combinarà  documents seleccionats en un document nou.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         El document combinat es posarà en cua per al seu consum.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Restableix filtres
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Títol & contingut
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Tipus de fitxer
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Més com
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         és igual a
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         està buit
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         no està buit
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         més gran que
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         més petit que
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Corresponsal: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sense corresponsal
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Tipus document: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sense tipus de document
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Ruta emmagatzematge: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Sense ruta emmagatzematge
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Etiqueta: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sense cap etiqueta
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Consulta de camps personalitzats
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Títol: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Propietari: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Propietari no és: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Sense propietari
       
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index cddc3e6fa..3a0390ced 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zavřít
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Předchozí
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Následující
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Předchozí měsíc
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Následující měsíc
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zavřít
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Vybrat měsíc
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Pokročilé vyhledávání
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potvrdit
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nepřiřazeno
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Otevřít filtr 
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Znovu zpracovat
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Otočit
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Dokumenty lze obnovit před trvalým odstraněním.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Přesunout do koše
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Potvrzení opětovného zpracování
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Potvrzení otočení
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrovat korespondenty
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrovat typy dokumentů
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrovat cesty k úložišti
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Vlastní pole
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtrovat vlastní pole
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Nastavit hodnoty
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Sloučit
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Zahrnout:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archivované soubory
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Původní soubory
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Použít formátovaný název souboru
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Chyba při provádění hromadné operace
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         "
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" a ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          a ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Potvrdit přiřazení štítků
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Tato operace přidá štítek "" k  vybraným dokumentům.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Tato operace přidá štítky  k  vybraným dokumentům.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Tato operace odstraní štítek "" z  vybraných dokumentů.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Tato operace odstraní štítky  z  vybraných dokumentů.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Tato operace přidá štítky  a odstraní štítky  u  vybraných dokumentů.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Potvrdit přiřazení korespondenta
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Tato operace přiřadí korespondenta "" k  vybraným dokumentům.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Tato operace odstraní korespondenta z  vybraných dokumentů.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Potvrdit přiřazení typu dokumentu
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Tato operace přiřadí typ dokumentu ""  vybraným dokumentům.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Tato operace odstraní typ dokumentu  vybraných dokumentů.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Potvrdit přiřazení cesty k úložišti
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Tato operace nastaví cestu úložiště „“ k  vybraným dokumentům.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Tato operace odstraní cestu úložiště u  vybraných dokumentů.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Potvrdit přidělení vlastního pole
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Tato operace nastaví vlastní pole „“ k  vybraným dokumentům.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Tato operace nastaví vlastní pole  k  vybraným dokumentům.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Tato operace odstraní vlastní pole „“ u  vybraných dokumentů.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Tato operace odstraní vlastní pole  u  vybraných dokumentů.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Tato operace nastaví vlastní pole  a odstraní vlastní pole  u  vybraných dokumentů.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Přesunout  vybraných dokumentů do koše?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Tato operace trvale obnoví archivní soubory pro  vybraných dokumentů.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Archivní soubory bude znovu vytvořeny s aktuálním nastavením.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Tato operace nenávratně otočí původní verzi  dokumentů.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Potvrdit sloučení
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Tato operace sloučí  vybraných dokumentů do nového dokumentu.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Sloučený dokument bude zařazen do fronty ke zpracování.
       
@@ -8557,7 +8557,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Zrušit filtry
       
@@ -8585,7 +8585,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8797,7 +8797,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Data
       
@@ -8805,7 +8805,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Název a obsah
       
@@ -8813,7 +8813,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8821,7 +8821,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Podobné
       
@@ -8829,7 +8829,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         rovná se
       
@@ -8837,7 +8837,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         je prázdný
       
@@ -8845,7 +8845,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         není prázdný
       
@@ -8853,7 +8853,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         větší než
       
@@ -8861,71 +8861,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         menší než
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Korespondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Bez korespondenta
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Typ dokumentu: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Bez typu dokumentu
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Cesta k úložišti: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Bez cesty k úložišti
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Štítek: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Bez štítku
       
@@ -8933,7 +8933,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Dotaz na vlastní pole
       
@@ -8941,7 +8941,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Název: 
       
@@ -8949,7 +8949,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         SČA: 
       
@@ -8957,7 +8957,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Vlastník: 
       
@@ -8965,7 +8965,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Vlastník není v: 
       
@@ -8973,7 +8973,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Bez vlastníka
       
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index c485ab418..33da58805 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Luk
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Forrige
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Næste
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Forrige måned
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Næste måned
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Luk
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Vælg måned
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Avanceret søgning
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bekræft
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Ikke tildelt
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrer korrespondenter
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrer dokumenttyper
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" og ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          og ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Bekræft tildeling af etiketter
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Denne handling vil tilføje etiketten "" til  valgte dokument(er).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Denne handling vil tilføje etiketterne "" til  valgte dokument(er).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Denne handling vil fjerne etiketten "" fra  valgte dokument(er).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Denne handling vil fjerne etiketterne "" fra  valgte dokument(er).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Denne handling vil tilføje etiketterne  og fjerne etiketterne  fra  valgte dokument(er).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Bekræft korrespondenttildeling
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Denne handling vil tildele korrespondenten "" til  valgte dokument(er).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Denne handling vil fjerne korrespondenten fra  valgte dokument(er).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Bekræft tildeling af dokumenttype
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Denne handling vil tildele dokumenttypen "" til  valgte dokument(er).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Denne handling vil fjerne dokumenttypen fra  valgte dokument(er).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Nulstil filtre
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel & indhold
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Mere som
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Uden korrespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Uden dokumenttype
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Uden nogen etiket
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index 31c7ed72b..497c834c5 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Schließen
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Vorherige
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Nächste
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Vorheriger Monat
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Nächster Monat
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Schließen
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Monat auswählen
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Erweiterte Suche
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bestätigen
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nicht zugewiesen
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
          Filter öffnen
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Erneut verarbeiten
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotieren
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Dokumente können wiederhergestellt werden, bevor sie unwiderruflich gelöscht werden.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         In den Papierkorb verschieben
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Erneut verarbeiten bestätigen
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotieren bestätigen
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Korrespondenten filtern
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Dokumenttypen filtern
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Speicherpfade filtern
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Benutzerdefinierte Felder
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Benutzerdefinierte Felder filtern
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Werte setzen
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Zusammenführen
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Einschließen:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archivierte Dateien
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Originaldateien
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Verwende formatierten Dateinamen
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Fehler bei der Massenbearbeitung
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         „“
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         „“ und „“
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          und „“
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Tag-Zuweisung bestätigen
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Dieser Vorgang wird  ausgewählten Dokumenten das Tag „“ hinzufügen.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Dieser Vorgang wird die Tags  zu  ausgewählten Dokumenten hinzufügen.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Dieser Vorgang wird das Tag „“ von  ausgewählten Dokumenten entfernen.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Dieser Vorgang wird die Tags  von  ausgewählten Dokumenten entfernen.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Dieser Vorgang wird  ausgewählten Dokumenten die Tags  hinzufügen und die Tags  entfernen.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Korrespondent-Zuweisung bestätigen
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Dieser Vorgang wird  ausgewählten Dokumenten den Korrespondenten „“ zuweisen.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Dieser Vorgang wird bei  ausgewählten Dokumenten den Korrespondent entfernen.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Dokumenttyp-Zuweisung bestätigen
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Dieser Vorgang wird  ausgewählten Dokumenten den Dokumenttyp „“ zuweisen.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Dieser Vorgang wird den Dokumenttyp von  ausgewählten Dokumenten entfernen.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Zuordnung des Speicherpfads bestätigen
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Dieser Vorgang wird  ausgewählten Dokumenten den Speicherpfad „“ zuweisen.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Dieser Vorgang wird den Speicherpfad von  ausgewählten Dokumenten entfernen.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Benutzerdefinierte Feldzuweisung bestätigen
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Dieser Vorgang wird  ausgewählten Dokumenten das benutzerdefinierte Feld „“ zuweisen.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Dieser Vorgang wird  ausgewählten Dokumenten die benutzerdefinierten Felder  zuweisen.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Dieser Vorgang wird das benutzerdefinierte Feld „“ von  ausgewählten Dokumenten entfernen.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Dieser Vorgang wird die benutzerdefinierten Felder  von  ausgewählten Dokumenten entfernen.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Dieser Vorgang wird  ausgewählten Dokumenten die benutzerdefinierten Felder  zuweisen und die benutzerdefinierten Felder  entfernen.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
          ausgewählte Dokumente in den Papierkorb verschieben?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Dieser Vorgang wird die Archivdateien von  ausgewählten Dokumenten unwiderruflich neu erstellen.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Die Archivdateien werden wird mit den aktuellen Einstellungen neu generiert.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Dieser Vorgang wird die Originalversion von  Dokument(en) permanent rotieren.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Zusammenführen bestätigen
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Dieser Vorgang wird  ausgewählte Dokumente zu einem neuen Dokument zusammenführen.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Das zusammengeführte Dokument wird zur Verarbeitung in die Warteschlange eingereiht.
       
@@ -8557,7 +8557,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Filter zurücksetzen
       
@@ -8585,7 +8585,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8797,7 +8797,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datum
       
@@ -8805,7 +8805,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel & Inhalt
       
@@ -8813,7 +8813,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Dateityp
       
@@ -8821,7 +8821,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Ähnlich zu
       
@@ -8829,7 +8829,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         entspricht
       
@@ -8837,7 +8837,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         ist leer
       
@@ -8845,7 +8845,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         ist nicht leer
       
@@ -8853,7 +8853,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         größer als
       
@@ -8861,71 +8861,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         kleiner als
       
-      
-        Correspondent: 
+      
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Korrespondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Ohne Korrespondent
       
-      
-        Document type: 
+      
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Dokumenttyp: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Ohne Dokumenttyp
       
-      
-        Storage path: 
+      
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Speicherpfad: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Ohne Speicherpfad
       
-      
-        Tag: 
+      
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Ohne Tag
       
@@ -8933,7 +8933,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Benutzerdefinierte Feldabfrage
       
@@ -8941,7 +8941,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8949,7 +8949,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8957,7 +8957,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Eigentümer: 
       
@@ -8965,7 +8965,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Eigentümer nicht in: 
       
@@ -8973,7 +8973,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Ohne Eigentümer
       
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index 197cefb37..b7d9425c2 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Κλείσιμο
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Προηγούμενο
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Επόμενο
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Προηγούμενος μήνας
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Επόμενος μήνας
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Κλείσιμο
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Επιλογή μήνα
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Σύνθετη αναζήτηση
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Επιβεβαίωση
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Δεν έχει ανατεθεί
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Φιλτράρισμα ανταποκριτών
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Φιλτράρισμα τύπων εγγράφων
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Φιλτράρισμα διαδρομών αποθήκευσης
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Συμπερίληψη:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Σφάλμα εκτέλεσης της μαζικής λειτουργίας
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" και ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          και ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Επιβεβαίωση ανάθεσης ετικετών
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Αυτή η λειτουργία θα προσθέσει την ετικέτα "" στο(α)  επιλεγμένο(α) έγγραφο(α).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Αυτή η λειτουργία θα προσθέσει τις ετικέτες  στα  επιλεγμένα έγγραφα.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Αυτή η λειτουργία θα αφαιρέσει την ετικέτα "" από  το(α) επιλεγμένο(α) έγγραφο(α).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Αυτή η λειτουργία θα αφαιρέσει τις ετικέτες  από το  επιλεγμένο(α) έγγραφο(α).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Αυτή η λειτουργία θα προσθέσει τις ετικέτες  και θα αφαιρέσει τις ετικέτες  στα  επιλεγμένα έγγραφα.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Επιβεβαίωση ανάθεσης ανταποκριτή
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Αυτή η ενέργεια θα αναθέσει τον ανταποκριτή "" στο  επιλεγμένο(α) έγγραφο(α).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Αυτή η λειτουργία θα αφαιρέσει τον ανταποκριτή από το  επιλεγμένο(α) έγγραφο(α).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Επιβεβαιώστε την ανάθεση τύπου εγγράφου
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Αυτή η λειτουργία θα αναθέσει τον τύπο εγγράφου "" στο  επιλεγμένο(α) έγγραφο(α).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Αυτή η λειτουργία θα αφαιρέσει τον τύπο εγγράφου από το  επιλεγμένο(α) έγγραφο(α).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Επιβεβαίωση ανάθεσης διαδρομής αποθήκευσης
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Αυτή η λειτουργία θα αναθέσει τη διαδρομή αποθήκευσης "" στο  επιλεγμένο(α) έγγραφο(α).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Αυτή η λειτουργία θα αφαιρέσει τη διαδρομή αποθήκευσης από το  επιλεγμένο(α) έγγραφο(α).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Επαναφορά φίλτρων
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Τίτλος & περιεχόμενο
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Περισσότερα σαν
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         ίσον
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         είναι κενό
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         δεν είναι κενό
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         μεγαλύτερο από
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         μικρότερο από
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Χωρίς ανταποκριτή
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Χωρίς τύπο εγγράφου
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Χωρίς διαδρομή αποθήκευσης
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Χωρίς καμία ετικέτα
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Τίτλος: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Ιδιοκτήτης: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Ιδιοκτήτης όχι σε: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Χωρίς ιδιοκτήτη
       
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 5a0d403af..f9ed3ee9a 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Cerrar
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Anterior
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Siguiente
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mes anterior
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Mes siguiente
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Cerrar
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Seleccionar mes
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Búsqueda avanzada
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirmar
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Sin asignar
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Abrir  filtro
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocesar
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotar
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Los documentos pueden ser restaurados antes de la eliminación permanente.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Mover a la papelera
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Confirmar reprocesado
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Confirmar rotación
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrar interlocutores
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrar tipos de documento
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrar rutas de almacenamiento
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Campos personalizados
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtrar campos personalizados
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Establecer valores
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Combinar
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Incluir:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archivos archivados
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Archivos originales
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Usar nombre de archivo formateado
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error al ejecutar operación en masa
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" y ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          y ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirmar etiquetas asignadas
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Esta operación agregará la etiqueta "" a  documento(s) seleccionado(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Esta operación agregará las etiquetas  a  documento(s) seleccionado(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Esta operacion eliminará la etiqueta "" de  documento(s) seleccionado(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Esta operacion eliminará las etiquetas  de  documento(s) seleccionado(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Esta operacion agregará las etiquetas  y eliminará las etiquetas   en  documento(s) seleccionado(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirmar asignación interlocutor
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Esta operación asignará el interlocutor "" a  documento(s) seleccionado(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Esta operación eliminará el interlocutor de  documento(s) seleccionado(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirmar asignación de tipo de documento
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Esta operacion asignará el tipo de documento "" a  documento(s) seleccionado(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Esta operación eliminará el tipo de documento de  documento(s) seleccionado(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirmar asignación de ruta de almacenamiento
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Esta operación asignará la ruta de almacenamiento "" a  documento(s) seleccionados.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Esta operación eliminará la ruta de almacenamiento de  documento(s) seleccionados.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirmar asignación de campo personalizado
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Esta operación asignará el campo personalizado "" a  documento(s) seleccionados.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Esta operación asignará los campos personalizados  a  documento(s) seleccionados.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Esta operación eliminará el campo personalizado "" de  documento(s) seleccionados.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Esta operación eliminará los campos personalizados  de  documento(s) seleccionados.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Esta operación asignará los campos personalizados  y eliminará los campos personalizados  en  documento(s) seleccionados.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         ¿Mover  el(los) documento(s) a la papelera?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Esta operación borrará permanentemente  documento(s) seleccionado(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         El archivo se regenerará con la configuración actual.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Esta operación girará permanentemente la versión original de  documento(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Confirmar combinación
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Esta operación dividirá los documento(s)  seleccionados en nuevos documentos.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         El documento combinado se pondrá en cola para su procesamiento.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Quitar filtros
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Fechas
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titulo y contenido
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Tipo archivo
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Más parecido
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         es igual a
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         está vacío
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         no está vacío
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         es mayor que
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         es menor que
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondencia: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sin interlocutor
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Tipo de documento: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sin tipo de documento
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Ruta de almacenamiento: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Sin ruta de almacenamiento
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Etiqueta: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sin ninguna etiqueta
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Consulta de campos personalizados
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Título: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         NSA: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Propietario: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Propietario no en: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Sin un propietario
       
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index da261c2c4..3b150f59c 100644
--- a/src-ui/src/locale/messages.et_EE.xlf
+++ b/src-ui/src/locale/messages.et_EE.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Close
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Previous
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Next
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Previous month
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Next month
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Close
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Select month
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Advanced search
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirm
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Not assigned
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter correspondents
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter document types
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Without any tag
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 93fc103ba..2d6c852ab 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Sulje
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Edellinen
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Seuraava
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Edellinen kuukausi
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Seuraava kuukausi
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Sulje
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Valitse kuukausi
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Laajennettu haku
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Vahvista
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Ei määritetty
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Käsittele uudelleen
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Uudelleenkäsittelyn vahvistus
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Suodata yhteyshenkilöt
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Suodata asiakirjatyyppejä
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Suodata tallennuspolkuja
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Mukautetut kentät
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Suodata mukautetut kentät
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Yhdistä
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Sisällytä:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Arkistoidut tiedostot
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Alkuperäiset tiedostot
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Käytä muotoiltua tiedostonimeä
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Virhe massatoiminnon suorittamisessa
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" ja ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          ja ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Varmista tagien asetus
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Tämä toiminto lisää tagin ""  valittuun tai valittuihin asiakirjoihin.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Tämä toiminto lisää tunnisteet   valittuun tai valittuihin asiakirjoihin.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Tämä toiminto poistaa tagin ""  valitusta dokumentista.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Tämä toiminto tulee poistamaan tagit    valitusta dokumentista.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Tämä toiminto lisää tagit  ja poistaa tagit  :sta valiltusta dokumentista.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Vahvista yhteyshenkilön asetus
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Tämä toiminto lisää yhteyshenkilön ""  valittuun tai valittuihin asiakirjoihin.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Tämä toiminto poistaa yhteyshenkilön "":sta valitusta asiakirjasta.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Vahvista asiakirjan tyypin määritys
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Tämä toiminto lisää asiakirjatyypin"" :een valittuun asiakirjaan.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Tämä toiminto poistaa asiakirjatyypin"":sta valitusta asiakirjasta.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Vahvista tallennuspolun asetus
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Tämä toiminto asettaa tallennuspolun "" :een valittuun asiakirjaan.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Tämä toiminto poistaa tallennuspolun "":sta valitusta asiakirjasta.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Tyhjennä suodattimet
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Otsikko & sisältö
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Enemmän kuin
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         on yhtä kuin
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         on tyhjä
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         ei ole tyhjä
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         suurempi kuin
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         pienempi kuin
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Ilman kirjeenvaihtajaa
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Ilman asiakirjatyyppiä
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Ilman tunnistetta
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Otsikko: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Omistaja: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 93a8e5a6b..34e3a9802 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Fermer
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Précédent
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Suivant
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mois précédent
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Mois suivant
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Fermer
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Sélectionner le mois
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Recherche avancée
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirmer
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Non affecté
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Ouvrir le filtre 
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Retraiter
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Pivoter
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Les documents peuvent être restaurés avant la suppression définitive.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Déplacer vers la corbeille
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Confirmer le retraitement
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Confirmation de la rotation
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrer les correspondants
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrer les types de documents
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrer les chemins de stockage
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Champs personnalisés
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtrer des champs personnalisés
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Définir des valeurs
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Fusionner
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Inclure :
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Fichiers archivés
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Fichiers originaux
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Utiliser le nom de fichier formaté
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Erreur lors de l'exécution de l'opération de masse
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" et ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          et ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirmer l'affectation des étiquettes
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Cette action affectera l'étiquette "" au(x)  document(s) sélectionné(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Cette action affectera les étiquettes  au(x)  document(s) sélectionné(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Cette action supprimera l'étiquette "" de(s)  document(s) sélectionné(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Cette action supprimera les étiquettes  de(s)  document(s) sélectionné(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Cette action ajoutera les étiquettes  et supprimera les étiquettes  de(s)  document(s) sélectionné(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirmer l'affectation du correspondant
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Cette action affectera le correspondant "" au(x)  document(s) sélectionné(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Cette action supprimera le correspondant de(s)  document(s) sélectionné(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirmer l'affectation du type de document
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Cette action affectera le type de document "" au(x)  document(s) sélectionné(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Cette action supprimera le type de document de(s)  document(s) sélectionné(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirmez le chemin de stockage
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Cette opération assignera le chemin de stockage "" aux  document(s) sélectionné(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Cette opération assignera le chemin de stockage des "" document(s) sélectionné(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirmer l'affectation de champ personnalisé
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Cette opération va affecter le champ personnalisé «  » sur les  document(s) sélectionné(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Cette opération va affecter les champs personnalisés  sur les  document(s) sélectionné(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Cette opération va supprimer le champ personnalisé «  » sur les  document(s) sélectionné(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Cette opération va supprimer les champs personnalisés   sur les  document(s) sélectionné(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Cette opération va affecter les champs personnalisés  et supprimera les champs personnalisés  sur les  document(s) sélectionné(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Déplacer le document/les  documents sélectionnés vers la corbeille ?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Cette action recréer définitivement les fichiers d'archive pour les  document(s) sélectionné(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Les fichiers d'archive vont être régénérés avec les paramètres actuels.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Cette opération pivotera définitivement la version originale de  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Confirmation de la fusion
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Cette opération fusionnera définitivement  document(s) sélectionné(s) dans un nouveau document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Le document fusionné sera dans la file d'attente pour consommation.
       
@@ -8557,7 +8557,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Réinitialiser les filtres
       
@@ -8585,7 +8585,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8797,7 +8797,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8805,7 +8805,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titre & contenu
       
@@ -8813,7 +8813,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Type de fichier
       
@@ -8821,7 +8821,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Plus comme
       
@@ -8829,7 +8829,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         est égal à
       
@@ -8837,7 +8837,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         est vide
       
@@ -8845,7 +8845,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         n'est pas vide
       
@@ -8853,7 +8853,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         est supérieur à
       
@@ -8861,71 +8861,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         est inférieur à
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Corrspondant : 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sans correspondant
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Type de document : 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sans type de document
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Chemin de stockage : 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Sans chemin de stockage
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Étiquette : 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sans étiquette
       
@@ -8933,7 +8933,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Champs personnalisés de requête
       
@@ -8941,7 +8941,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titre : 
       
@@ -8949,7 +8949,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         NSA : 
       
@@ -8957,7 +8957,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Propriétaire : 
       
@@ -8965,7 +8965,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Propriétaire non présent dans : 
       
@@ -8973,7 +8973,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Sans propriétaire
       
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index ede478860..56539e62d 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         סגור
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         הקודם
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         הבא
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         חודש קודם
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         חודש הבא
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         שש
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         סגירה
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         בחירת חודש
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         חיפוש מתקדם
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         אשר
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         לא הוקצה
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         סנן מכותבים
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         סנן סוגי מסמכים
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         סנן מיקום אכסון
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         שדות מותאמים אישית
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         מזג
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         כולל:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         קבצים מקוריים
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         שגיאת הרצת קבוצת פקודות
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" ו- ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          ו- ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         אשר שיוך תגיות
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         הפעולה תוסיף את התג  ל מסמכים שנבחרו.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         הפעולה תוסיף את התגיות  ל  מסמכים שנבחרו.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         הפעולה תמחק את התג  מ  מסמכים שנבחרו.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         פעולה זו תמחק את התגיות  מ  מסמכים שנבחרו.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         פעולה זו תוסיף את התגיות  ותמחק את התגיות  ב  מסמכים שנבחרו.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         אשר שיוך כותב
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         פעולה זו תשייך את הכותב  ל  מסמכים שנבחרו.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         פעולה זו תמחק את הכותב מ מסמכים שנבחרו.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         אשר שיוך סוג מסמך
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         פעולה זו תשייך את סוג המסמך  ל מסמכים שנבחרו.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         פעולה זו תמחק את סוג המסמך  מהמסמכים שנבחרו.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         אשר שיוך נתיב אחסון
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         כותרת & תוכן
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         עוד כמו
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         שווה
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         הינו ריק
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         אינו ריק
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         גדול מ
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         קטן מ
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         ללא מכותבים
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         ללא סוג מסמך
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         ללא נתיב אחסון
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         ללא תיוג
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         כותרת: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         מס"ד: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         בעלים: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         הבעלים לא נכלל בתוך: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         ללא בעלים
       
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 1a70a2401..b28579eda 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zatvori
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Prethodno
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Sljedeće
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Prethodni mjesec
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Sljedeći mjesec
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zatvori
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Odaberi mjesec
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Advanced search
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potvrdi
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nije dodijeljen
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtriraj dopisnike
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtriraj vrste dokumenta
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtriraj putanju pohrane
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Uključi:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Without any tag
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index 3f9805a19..5502eb1fe 100644
--- a/src-ui/src/locale/messages.hu_HU.xlf
+++ b/src-ui/src/locale/messages.hu_HU.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Bezár
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Előző
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Következő
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Előző hónap
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         A következő hónapban
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Bezár
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Válassza ki a hónapot
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Speciális keresés
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Megerősítés
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nincs hozzárendelve
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Szűrje a levelezőket
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Dokumentumtípusok szűrése
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Szűrő tárolási útvonalak
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Egyéni mezők
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Tartalmazza:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Hiba a csoportos művelet végrehajtásában
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" és ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          és ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Címkék hozzárendelésének megerősítése
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Ez a művelet hozzáadja a "" címkét a  kiválasztott dokumentum(ok)hoz.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Ez a művelet hozzáadja a  címkéket a  kiválasztott dokumentum(ok)hoz.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Ez a művelet eltávolítja a "" címkét a  kiválasztott dokumentum(ok)ból.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Ez a művelet eltávolítja a  címkéket a  kiválasztott dokumentum(ok)ból.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Ez a művelet hozzáadja a  címkéket és eltávolítja a  címkéket a  kiválasztott dokumentum(ok)on.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Kapcsolattartói hozzárendelés megerősítése
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Ez a művelet hozzárendeli a megfelelő "" címet a  kiválasztott dokumentum(ok)hoz.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Ez a művelet eltávolítja a levelezőt a  kiválasztott dokumentum(ok)ból.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Dokumentumtípus hozzárendelés megerősítése
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Ez a művelet a "" dokumentumtípust rendeli a  kiválasztott dokumentum(ok)hoz.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Ez a művelet eltávolítja a dokumentumtípust a  kiválasztott dokumentum(ok)ból.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Tárolási útvonal hozzárendelésének megerősítése
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Ez a művelet a "" tárolási útvonalat rendeli a  kiválasztott dokumentum(ok)hoz.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Ez a művelet eltávolítja a  kiválasztott dokumentum(ok) tárolási útvonalát.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Szűrők visszaállítása
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Cím & tartalom
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Bővebben
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         egyenlő
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         üres
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         nem üres
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         nagyobb, mint
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         kevesebb, mint
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Kapcsolattartó nélkül
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Dokumentumtípus nélkül
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Tárolási útvonal nélkül
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Címke nélkül
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Cím: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Tulajdonos: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         A tulajdonos nincs: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Tulajdonos nélkül
       
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index e2f038e0d..c8824aeba 100644
--- a/src-ui/src/locale/messages.id_ID.xlf
+++ b/src-ui/src/locale/messages.id_ID.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Tutup
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Sebelumnya
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Selanjutnya
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Bulan sebelumnya
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Bulan depan
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Tutup
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Pilih bulan
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Pencarian lanjutan
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Konfirmasi
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Tidak ditugaskan
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Buka  saring
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Putar
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter koresponden
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter jenis dokumen
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter lokasi penyimpanan
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Sertakan:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filter
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         kosong
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         tidak kosong
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         lebih besar dari
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         kurang dari
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Tanpa koresponden
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Tanpa tipe dokumen
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Tanpa lokasi penyimpanan
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Tanpa label apapun
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Tanpa pemilik
       
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 708ce3b3b..3a5a254c5 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Chiudi
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Precedente
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Successivo
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mese precedente
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Mese successivo
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Chiudi
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Seleziona il mese
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Ricerca avanzata
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Conferma
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Non assegnato
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Apri filtro 
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         ,
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Rielabora
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Ruota
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         I documenti possono essere ripristinati prima della cancellazione definitiva.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Sposta nel cestino
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Conferma rielaborazione
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Conferma rotazione
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtra corrispondenti
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtra tipi di documento
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtra percorsi di archiviazione
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Campi personalizzati
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtra campi personalizzati
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Imposta valori
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Unisci
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Includere:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         File archiviati
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         File originali
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Usa nome file formattato
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Errore nell'esecuzione dell'operazione in blocco
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" e ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
         e  ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Conferma assegnazione tag
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Questa operazione aggiungerà il tag "" a  documento/i selezionato/i.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Questa operazione aggiungerà i tag  a  documento/i selezionato/i.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Questa operazione rimuoverà il tag "" da  documento/i selezionato/i. 
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Questa operazione rimuoverà i tag  da  documento/i selezionato/i.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Questa operazione aggiungerà i tag  e rimuoverà i tag  a  documento/i selezionato/i.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Conferma assegnazione corrispondente
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Questa operazione assegnerà il corrispondente "" a  documento/i selezionato/i.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Questa operazione rimuoverà il corrispondente da  documento/i selezionato/i.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Conferma assegnazione tipo di documento
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Questa operazione assegnerà il tipo di documento "" a  documento/i selezionato/i.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Questa operazione eliminerà il tipo di documento da  documento/i selezionato/i. 
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Conferma assegnazione percorso di archiviazione
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Questa operazione assegnerà il percorso di archiviazione "" a  documento/i selezionato/i.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Questa operazione rimuoverà il percorso di archiviazione da  documento/i selezionato/i.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Conferma assegnazione campo personalizzato
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Questa operazione assegnerà il campo personalizzato "" a  documenti selezionati.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Questa operazione assegnerà i campi personalizzati  a  documenti selezionati.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Questa operazione rimuoverà il campo personalizzato "" da  documenti selezionati.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Questa operazione assegnerà i campi personalizzati  da  documenti selezionati.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Questa operazione assegnerà i campi personalizzati  e rimuoverà i campi personalizzati  su  documenti selezionati.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Spostare  documenti selezionati nel cestino?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Questa operazione ricreerà in modo permanente i file di archivio per i  documenti selezionati.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         I file di archivio verranno rigenerati con le impostazioni attuali.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Questa operazione ruoterà in modo permanente la versione originale di  documenti.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Conferma unione
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Questa operazione unirà  documenti selezionati in nuovi documenti.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Il documento unito sarà messo in coda per l'elaborazione.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Ripristina filtri
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Date
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titolo & contenuto
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Tipo di file
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Più come
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         uguale a
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         è vuoto
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         non è vuoto
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         maggiore di
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         minore di
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Corrispondente: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Senza corrispondente
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Tipo di documento: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Senza tipo di documento
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Percorso di archiviazione: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Senza percorso di archiviazione
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Etichetta: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Senza alcun tag
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Query campi personalizzati
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titolo: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Proprietario: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Proprietario non in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Senza proprietario
       
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index 492f3af19..96a9d03d2 100644
--- a/src-ui/src/locale/messages.ja_JP.xlf
+++ b/src-ui/src/locale/messages.ja_JP.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         閉じる
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         前へ
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         次へ
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         前月
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         翌月
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         閉じる
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         月を選択
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         高度な検索
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         確認
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         未割り当て
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
          フィルタを開く
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         、 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         再処理
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         回転
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         ドキュメントは永久に削除される前に復元できます。
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         ごみ箱へ移動
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         再処理の確認
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         本当に回転しますか?
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         発信元のフィルター
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         ドキュメントタイプを検索
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         フォルダーを検索
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         カスタム項目
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         カスタムフィールドをフィルタ
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         値の設定
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         結合
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         以下を含める:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         アーカイブされたファイル
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         元のファイル
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         フォーマット済みのファイル名を使用
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         一括操作の実行に失敗しました
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" と ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          と ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         タグを割り当てますか?
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         この操作により、選択中の  ドキュメントにタグ "" が追加されます。
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         この操作により、選択中の  ドキュメントにタグ  が追加されます。
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         この操作により、選択中の  ドキュメントからタグ "" が削除されます。
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         この操作により、選択中の  ドキュメントからタグ  が削除されます。
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         この操作により、選択中の  ドキュメントにタグ  が追加され、タグ  が削除されます。
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         発信元を割り当てますか?
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         この操作により、選択された件のドキュメントに発信元「」が割り当てられます。
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         この操作により、選択された件のドキュメントから発信元が削除されます。
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         ドキュメントタイプを割り当てますか?
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         この操作により、選択中の  ドキュメントにドキュメントタイプ "" が割り当てられます。
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         この操作により、選択中の  ドキュメントからドキュメントタイプが削除されます。
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         フォルダーを割り当てますか?
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         この操作により、選択中の  ドキュメントにフォルダー "" が割り当てられます。
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         この操作により、選択中の  ドキュメントからフォルダーが削除されます。
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         カスタムフィールドの割り当てを確認
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         この操作により、カスタムフィールド "" が選択されたドキュメント  に割り当てられます。
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         この操作により、カスタムフィールド "" が選択されたドキュメント  に割り当てられます。
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         この操作により、カスタムフィールド "" が選択したドキュメント  から削除されます。
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         この操作により、カスタムフィールド  が選択したドキュメント  から削除されます。
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         この操作により、選択したドキュメント  にカスタムフィールド  が割り当てられ、カスタムフィールド  が削除されます。
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         選択したドキュメント  をゴミ箱に移動しますか?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         この操作により、選択した  のドキュメントのアーカイブ ファイルが永続的に再作成されます。
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         アーカイブファイルは現在の設定で再生成されます。
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         この操作により、 ドキュメントの元のバージョンが恒久的に回転します。
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         本当に結合しますか?
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         この操作により、選択中の  ドキュメントが新しいドキュメントに分割されます
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         結合されたドキュメントはキューに追加されます
       
@@ -8557,7 +8557,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         フィルターをリセット
       
@@ -8585,7 +8585,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8797,7 +8797,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         日付
       
@@ -8805,7 +8805,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         タイトルと内容
       
@@ -8813,7 +8813,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         ファイル形式
       
@@ -8821,7 +8821,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         類似
       
@@ -8829,7 +8829,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         が次の値と等しい
       
@@ -8837,7 +8837,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         が空である
       
@@ -8845,7 +8845,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         が空でない
       
@@ -8853,7 +8853,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         が次の値より大きい
       
@@ -8861,71 +8861,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         が次の値より小さい
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        発信元: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         発信元なし
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        ドキュメントタイプ: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         ドキュメントタイプなし
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        ストレージパス: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         フォルダーなし
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        タグ: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         タグなし
       
@@ -8933,7 +8933,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         カスタムフィールドのクエリ
       
@@ -8941,7 +8941,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         タイトル: 
       
@@ -8949,7 +8949,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8957,7 +8957,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         所有者: 
       
@@ -8965,7 +8965,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         所有者がいない: 
       
@@ -8973,7 +8973,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         所有者なし
       
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index eaf8eb9e0..151547e1b 100644
--- a/src-ui/src/locale/messages.ko_KR.xlf
+++ b/src-ui/src/locale/messages.ko_KR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         닫기
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         이전
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         다음
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         지난달
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         다음 달
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         시
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         닫기
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         월 선택
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         고급 검색
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         확인
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         할당되지 않음
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         "" 필터 열기
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         재처리
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         회전
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         문서를 영구 삭제하기 전에 복원할 수 있습니다.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         휴지통으로 이동
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         재처리 확인
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         회전 확인
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         담당자 필터
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         문서 유형 필터
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         저장 경로 필터
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         사용자 정의 필드
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         사용자 정의 필터
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         값 설정
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         병합
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         포함:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         보관된 파일
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         원본 파일
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         형식화된 파일명 사용
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         대량 작업 실행 중 오류 발생
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" 그리고 ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          그리고 ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         태그 할당 확인
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         이 작업은  태그를 개의 선택된 문서에 추가합니다.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         이 작업은  태그들을 개의 선택된 문서에 추가합니다.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         이 작업은  태그를 개의 선택된 문서에서 제거합니다.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         이 작업은  태그들을 개의 선택된 문서에서 제거합니다.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         이 작업은 태그들을 추가하고, 태그들을 개의 선택된 문서에서 제거합니다.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         담당자 지정 확인
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         이 작업은  담당자를 개의 선택된 문서에 할당합니다.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         이 작업은 개의 선택된 문서에서 담당자를 제거합니다.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         문서 유형 할당 확인
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         이 작업은  문서 유형을 개의 선택된 문서에 할당합니다.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         이 작업은 개의 선택된 문서에서 문서 유형을 제거합니다.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         저장 경로 할당 확인
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         이 작업은  저장 경로를 개의 선택된 문서에 할당합니다.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         이 작업은 개의 선택된 문서에서 저장 경로를 제거합니다.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         사용자 지정 필드 할당 확인
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         이 작업은  사용자 정의 필드를 개의 선택된 문서에 할당합니다.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         이 작업은  사용자 정의 필드를 개의 선택된 문서에 할당합니다.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         이 작업은  사용자 정의 필드를 개의 선택된 문서에서 제거합니다.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         이 작업은  사용자 정의 필드를 개의 선택된 문서에서 제거합니다.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         이 작업은  사용자 정의 필드를 추가하고, 사용자 정의 필드를 개의 선택된 문서에 제거합니다.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         개의 선택된 문서를 휴지통으로 이동하시겠습니까?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         이 작업은 개의 선택된 문서에 대해 아카이브 파일을 영구적으로 재생성합니다.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         아카이브 파일은 현재 설정으로 다시 생성됩니다.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         이 작업은 개의 문서의 원본 버전을 영구적으로 회전시킵니다.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         병합 확인
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         이 작업은 개의 선택된 문서를 새 문서로 병합합니다.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         병합된 문서는 사용 대기열에 대기합니다.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         필터 초기화
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         날짜
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         제목 & 자료
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         더 비슷한
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         일치
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         는(은) 비어 있습니다.
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         가 비어 있지 않습니다.
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         보다 큰
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         미만
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        담당자: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         담당자 없음
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        문서 유형:
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         문서 유형 없음
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        저장경로: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         저장 경로 없음
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        태그: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         어떤 태그도 없이
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         사용자 정의 필드 쿼리
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         제목:
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN:
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         소유자:
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         소유자가 다음에 없습니다: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         소유자 없음
       
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 8c5874022..b1ae11de1 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zoumaachen
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Zréck
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Weider
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mount virdrun
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Nächste Mount
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zoumaachen
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Mount auswielen
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Erweidert Sich
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bestätegen
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Net zougewisen
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Korrespondente filteren
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Dokumententype filteren
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" a(n) ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          a(n) ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Zouweisung vun der Etikett bestätegen
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Dës Operatioun setzt d'Etikett "" bei  ausgewielt Dokument(er).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Dës Operatioun setzt d'Etiketten  bei  ausgewielt Dokument(er).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Dës Operatioun läscht d'Etikett "" bei  ausgewielt Dokument(er).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Dës Operatioun setzt d'Etiketten  dobäi a läscht d'Etiketten  bei  ausgewielt Dokument(er).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         D'Zouweisung vum Korrespondent bestätegen
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Dës Operatioun weist de Korrespondent ""  ausgewielt Dokument(er) zou.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Dës Operatioun läscht de Korrespondent bei  ausgewielt Dokument(er).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Zouweisung vum Dokumententyp bestätegen
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Dës Operatioun weist den Dokumententyp ""  ausgewielt Dokument(er) zou.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Dës Operatioun läscht den Dokumententyp bei  ausgewielt Dokument(er).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Filteren zrécksetzen
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel an Inhalt
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Méi ähnleches
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         ass gläich
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         ass eidel
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         ass net eidel
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         ass méi grouss ewéi
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         ass méi kleng ewéi
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Ouni Korrespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Ouni Dokumententyp
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Ouni Etikett
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 17ca89be5..81d530622 100644
--- a/src-ui/src/locale/messages.lt_LT.xlf
+++ b/src-ui/src/locale/messages.lt_LT.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Uždaryti
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Ankstesnis
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Kitas
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Ankstesnis mėnuo
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Kitas mėnuo
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Uždaryti
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Pasirinktas mėnuo
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Advanced search
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirm
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Not assigned
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter correspondents
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter document types
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Without any tag
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index d1e69abec..bdccada61 100644
--- a/src-ui/src/locale/messages.lv_LV.xlf
+++ b/src-ui/src/locale/messages.lv_LV.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Aizvērt
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Iepriekšējais
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Nākamais
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Iepriekšējais mēnesis
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Nākamais mēnesis
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Aizvērt
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Izvēlieties mēnesi
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Paplašinātā meklēšana
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Apstiprināt
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nav piešķirts
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter correspondents
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter document types
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Pielāgojami lauki
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         ir tukšs
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         lielāks par
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         mazāk kā
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Bez birkas
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf
index d8fd67688..a50d8a8a6 100644
--- a/src-ui/src/locale/messages.ms_MY.xlf
+++ b/src-ui/src/locale/messages.ms_MY.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Close
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Previous
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Next
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Previous month
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Next month
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Close
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Select month
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Advanced search
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirm
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Not assigned
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter correspondents
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter document types
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Without any tag
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 0c4f17695..e032b6476 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Sluiten
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Vorige
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Volgende
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Vorige maand
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Volgende maand
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         UU
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Sluiten
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Selecteer maand
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Geavanceerd zoeken
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bevestig
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Zonder toewijzing
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Opnieuw verwerken
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Roteren
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documenten kunnen worden hersteld voordat ze definitief worden verwijderd.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Verplaatsen naar prullenbak
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Bevestig opnieuw verwerken
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Roteren bevestigen
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Correspondenten filteren
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Documenttypes filteren
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Opslagpaden filteren
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Aangepaste velden
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter aangepaste velden
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Waarden instellen
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Samenvoegen
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Inclusief:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Gearchiveerde bestanden
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Originele bestanden
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Gebruik geformatteerde bestandsnaam
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Fout bij uitvoeren bulkbewerking
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" en ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          en ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Bevestig toewijzen van labels
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Het label "" zal aan  geselecteerd(e) document(en) worden toegewezen.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Deze bewerking zal de labels  toevoegen aan  geselecteerd(e) document(en).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Het label "" zal verwijderd worden van  geselecteerd(e) document(en).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Deze bewerking zal de labels  verwijderen van  geselecteerd(e) document(en).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Deze bewerking zal de labels  toevoegen en verwijdert de labels  van  geselecteerd(e) document(en).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Bevestig toewijzen van correspondent
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         De correspondent "" zal aan  geselecteerd(e) document(en) worden toegewezen.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         De correspondent zal verwijderd worden van  geselecteerd(e) document(en).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Bevestig toewijzen van documenttype
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Het documenttype "" zal aan  geselecteerd(e) document(en) worden toegewezen.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Het documenttype zal verwijderd worden van  geselecteerd(e) document(en).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Bevestig toewijzing opslagpad
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Het opslagpad  zal toegewezen worden aan  geselecteerd(e) document(en).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Het opslagpad zal verwijderd worden van  geselecteerd(e) document(en).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Toewijzing van aangepaste velden bevestigen
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Deze bewerking zal het aangepaste veld  toevoegen aan  geselecteerde document(en).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Deze bewerking zal de aangepaste velden  toevoegen aan  geselecteerde document(en).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Deze bewerking zal het aangepaste veld  verwijderen van  geselecteerde document(en).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Deze bewerking zal de aangepaste velden  verwijderen van  geselecteerde document(en).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Deze bewerking zal de aangepaste velden  toewijzen en de aangepaste velden  verwijderen van  geselecteerde document(en).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Verplaats  geselecteerde document(en) naar de prullenbak?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Met deze bewerking worden de gearchiveerde bestanden voor  geselecteerde document(en) permanent opnieuw aangemaakt.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         De gearchiveerde bestanden worden opnieuw gegenereerd met de huidige instellingen.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Met deze bewerking wordt de originele versie van  document(en) permanent geroteerd.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Samenvoegen bevestigen
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Deze bewerking voegt  geselecteerde documenten samen tot een nieuw document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Het samengevoegde document wordt in de wachtrij geplaatst voor verwerking.
       
@@ -8557,7 +8557,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Filters terug zetten
       
@@ -8585,7 +8585,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8797,7 +8797,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datum
       
@@ -8805,7 +8805,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel en inhoud
       
@@ -8813,7 +8813,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8821,7 +8821,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Meer zoals
       
@@ -8829,7 +8829,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         gelijk aan
       
@@ -8837,7 +8837,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is leeg
       
@@ -8845,7 +8845,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is niet leeg
       
@@ -8853,7 +8853,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         groter dan
       
@@ -8861,71 +8861,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         kleiner dan
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Zonder correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Documenttype: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Zonder documenttype
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Opslagpad: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Zonder opslagpad
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Label: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Zonder label
       
@@ -8933,7 +8933,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Aangepaste velden zoekopdracht
       
@@ -8941,7 +8941,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8949,7 +8949,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8957,7 +8957,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Eigenaar: 
       
@@ -8965,7 +8965,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Eigenaar niet in: 
       
@@ -8973,7 +8973,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Zonder eigenaar
       
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index bdbf131c7..71ac707bd 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Lukk
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Forrige
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Neste
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Forrige måned
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Neste måned
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Lukk
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Velg en måned
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Avansert søk
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bekreft
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Ikke tildelt
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrere korrespondenter
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrer dokumenttyper
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrere lagringsstier
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Inkluder:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Bekreft tildeling av etiketter
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Denne operasjonen vil legge til etiketten "" til  valgte dokumenter.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Denne operasjonen vil legge til etikettene  til  valgte dokumenter.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Denne handlingen vil fjerne etiketten "" fra  valgte dokument(er).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Denne operasjonen vil fjerne etikettene  fra  valgte dokumenter.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Denne operasjonen vil legge til etikettene  og fjerne etikettene  på  valgte dokumenter.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Bekreft korrespondent tildeling
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Denne operasjonen vil legge til etiketten "" til  valgte dokumenter.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Denne operasjonen vil fjerne korrespondenten fra  valgte dokument(er).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Bekreft tildeling av dokumenttype
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Denne operasjonen vil tildele dokumenttypen "" til  valgte dokument(er).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Denne operasjonen vil fjerne dokumenttypen fra  valgte dokument(er).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Bekreft tildeling av lagringssti
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Denne operasjonen vil tilegne lagringsstien "" til  valgte dokument(er).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Denne operasjonen vil fjerne lagringsstien fra  valgte dokument(er).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Tilbakestille filtre
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Tittel & innhold
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Mer lik
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         er lik
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         er tom
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         er ikke tom
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         større enn
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         mindre enn
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Uten korrespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Uten dokumenttype
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Uten lagringssti
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Uten noen etiketter
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Tittel: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Eier: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Eier ikke i: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Uten en eier
       
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 818fd38df..56cc90a89 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zamknij
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Poprzedni
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Następny
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Poprzedni miesiąc
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Następny miesiąc
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zamknij
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Wybierz miesiąc
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Wyszukiwanie zaawansowane
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potwierdź
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nieprzypisane
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Otwórz  filtr
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Ponowne przetwórz
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Obrót
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Dokumenty można przywrócić przed ich trwałym usunięciem.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Przenieś do kosza
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Potwierdzenie ponownego przetwarzania
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Potwierdzenie obrotu
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtruj nadawców
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtruj typy dokumentów
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtruj ścieżkę zapisu
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Pola dodatkowe
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtrowanie pól niestandardowych
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Łączenie
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Zawrzyj:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Zarchiwizowane pliki
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Oryginalne pliki
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Użyj sformatowanej nazwy pliku
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Błąd podczas wykonywania operacji masowej
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" i ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          i ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Potwierdź przypisanie tagów
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Ta operacja doda tag "" do  wybranych dokumentów.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Ta operacja doda tagi  to  wybranych dokumentów.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Ta operacja usunie tag "" z  wybranych dokumentów.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Ta operacja usunie tagi  from  wybranych dokumentu(ów).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Ta operacja doda tagi  and remove the tags  w  wybranych dokumentach.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Potwierdź przypisanie nadawcy
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Ta operacja przypisze nadawcę "" do  wybranych dokumentów.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Ta operacja usunie nadawcę z  wybranych dokumentów.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Potwierdź przypisanie typu dokumentu
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Ta operacja przypisze typ dokumentu "" do  zaznaczonych dokumentów.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Ta operacja usunie typ dokumentu z  wybranych dokumentów.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Potwierdź przypisanie ścieżki zapisu
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Ta operacja przypisze ścieżkę zapisu "" do  wybranych dokumentów.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Ta operacja usunie ścieżkę zapisu z  wybranych dokumentów.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Potwierdź przypisanie pola niestandardowego
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Ta operacja przypisze pole niestandardowe"" do  wybranych dokumentów.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Ta operacja przypisze pola niestandardowe  do  wybranych dokumentów.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Ta operacja usunie niestandardowe pole "" z  wybranych dokumentów.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Ta operacja usunie niestandardowe pola  z  wybranych dokumentów.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Ta operacja przypisze pola niestandardowe  i usunie niestandardowe pola  na  wybranych dokumentach.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Przenieść  wybrane dokumenty do kosza?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Ta operacja trwale odtworzy pliki archiwum dla  wybranych dokumentów.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Pliki archiwum zostaną ponownie wygenerowane z bieżącymi ustawieniami.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Ta operacja spowoduje trwały obrót oryginalnej wersji  dokumentu(ów).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Potwierdzenie połączenia
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Ta operacja połączy  wybrane dokumenty w nowy dokument.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Połączony dokument zostanie umieszczony w kolejce do pobrania.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Zresetuj filtry
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Daty
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Tytuł & treść
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Podobne do
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         równa się
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         jest pusty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         nie jest pusty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         większy niż
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         mniejsze niż
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Korespondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Bez nadawcy
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Typ dokumentu: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Bez typu dokumentu
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Ścieżka przechowywania: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Bez ścieżki zapisu
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Bez żadnego tagu
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Zapytanie o pola dodatkowe
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Tytuł: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         Numer archiwum: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Właściciel: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Właściciel nie w: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Bez właściciela
       
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 186c7264e..829782ba0 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Fechar
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Anterior
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Próximo
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mês anterior
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Próximo mês
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Fechar
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Selecione o mês
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Pesquisa avançada
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirmar
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Não atribuído
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Abrir  filtro
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocessar
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Girar
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documentos podem ser restaurados antes da exclusão permanente.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Mover para lixeira
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Confirmação de reprocessamento
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Confirmar Rotação
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrar correspondentes
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrar tipos de documento
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrar caminhos de armazenamento
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Campos personalizados
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Definir valores
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Juntar
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Incluir:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Arquivos arquivados
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Arquivos originais
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Usar nome do arquivo formatado
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Erro ao executar a operação em massa
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" e ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          e ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirmar atribuição de etiqueta
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Essa operação irá adicionar a etiqueta "" em  documento(s) selecionado(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Essa operação irá adicionar as etiquetas  em  ao(s) documento(s) selecionado(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Essa operação irá remover a etiqueta "" de  documento(s) selecionado(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Essa operação irá remover as etiquetas  de  do(s) documento(s) selecionado(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Essa operação irá adicionar as etiquetas  e remover as etiquetas  de  documento(s) selecionado(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirmar atribuição de correspondente
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Essa operação irá atribuir o correspondente "" para  documento(s) selecionado(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Essa operação irá remover o correspondente de  documento(s) selecionado(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirmar atribuição de tipo de documento
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Essa operação irá atribuir o tipo de documento "" para  documento(s) selecionado(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Essa operação irá remover o tipo de documento de  documento(s) selecionado(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirmar atribuição de caminho de armazenamento
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Esta operação irá atribuir o caminho de armazenamento "" para  documento(s) selecionado(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Essa operação irá remover o caminho de armazenamento de  documento(s) selecionado(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirmar atribuição de campo personalizado
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Esta operação atribuirá os campos personalizados  para  documento(s) selecionado(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Esta operação atribuirá os campos personalizados  para  documento(s) selecionado(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Esta operação removerá os campos personalizados  para  documento(s) selecionado(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Esta operação removerá os campos personalizados  para  documento(s) selecionado(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Esta operação irá atribuir campos customizados  e remover os campos customizados  nos  documentos selecionados.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Mover  documentos selecionados para a lixeira?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Essa operação irá excluir permanentemente o arquivo  documento(s) selecionado(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Os arquivos serão re-gerados com as configurações atuais.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Essa operação irá girar permanentemente a versão original do(s)  documento(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Confirmar junção
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Essa operação irá juntar os  documentos selecionados em um novo documento.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         O documento juntado será colocado na fila para consumo.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Limpar filtros
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datas
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Título & conteúdo
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Mais parecido
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         igual a
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         está vazio
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         não está vazio
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         maior que
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         menor que
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondente: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sem correspondente
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Tipo de documento: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sem tipo de documento
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Caminho de armazenamento: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Sem o caminho de armazenamento
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Etiqueta: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sem etiquetas
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Consulta de campos personalizados
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Título: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         NSA: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Proprietário: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Sem um proprietário
       
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 43331088b..64228cd7d 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Fechar
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Anterior
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Seguinte
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Mês anterior
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Mês seguinte
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Fechar
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Selecionar mês
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Pesquisa avançada
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirmar
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Não atribuído
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrar correspondentes
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrar tipos de documentos
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrar caminhos de armazenamento
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Incluir:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" e ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          e ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirmar atribuição de etiquetas
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Esta operação irá adicionar a etiqueta "" ao(s)  documento(s) selecionado(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Esta operação irá adicionar as etiquetas  ao(s)  documento(s) selecionado(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Esta operação irá remover a etiqueta "" do(s)  documento(s) selecionado(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Esta operação irá remover as etiquetas  do(s)  documento(s) selecionado(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Esta operação irá adicionar as etiquetas  e remover as etiquetas  no(s)  documento(s) selecionado(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirmar atribuição de correspondente
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Esta operação irá atribuir o correspondente  ao(s)  documento(s) selecionado(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Esta operação irá remover o correspondente do(s)  documento(s) selecionado(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirmar atribuição de tipo de documentos
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         A operação irá atribuir o tipo de documento "" ao(s)  documento(s) selecionado(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Esta operação irá remover o tipo de documento do(s)  documento(s) selecionado(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Esta operação irá associar o caminho de armazenamento  para  documento(s) selecionado(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Esta operação irá remover o caminho de armazenamento de  documento(s) selecionado(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Limpar filtros
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Título & conteúdo
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Semelhantes a
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         é igual a
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         está vazio
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         não está vazio
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         é maior que
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         é menor que
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Sem correspondente
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Sem tipo de documento
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Sem caminho de armazenamento
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Sem etiquetas
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Título: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         NSA: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Dono: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 3943a6efc..e25e6b59f 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Închide
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Anterior
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Următor
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Luna precedentă
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Luna următoare
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Închide
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Selectați luna
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Căutare avansată
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Confirmă
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nealocate
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrează corespondenți
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrează tipuri de documente
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" și ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          și ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirmați atribuirea etichetelor
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Va fi adăugată eticheta "" la  document(e) selectat(e).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Vor fi adăugate etichetele  la  document(e) selectat(e).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Va fi eliminată eticheta "" din  document(e) selectat(e).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Vor fi eliminate etichetele  din  document(e) selectat(e).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Vor fi adăugate etichetele  și vor fi eliminate etichetele  pentru  document(e) selectat(e).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirmați atribuirea corespondentului
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Va fi adăugat corespondentul "" la  document(e) selectat(e).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Va fi eliminat corespondentul din  document(e) selectat(e).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirmați atribuirea tipului de document
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Va fi atribuit tipul "" pentru  document(e) selectat(e).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Va fi eliminat tipul pentru  document(e) selectat(e).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Resetare filtre
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titlu si conținut
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Asemănătoare
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Fără corespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Fară tip
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Fară etichete
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titlu: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         Aviz prealabil de expediție: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index c6f91374a..721b70246 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Закрыть
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Назад
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Следующий
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Предыдущий месяц
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Следующий месяц
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         ЧЧ
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Закрыть
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Выберите месяц
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Расширенный поиск
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Подтвердить
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Не назначено
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Переместить в корзину
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Фильтр корреспондентов
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Фильтр типа документов
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Фильтр по пути хранения
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Пользовательские поля
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Включить:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Ошибка при выполнении массовой операции
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" и ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          и ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Подтвердить применяемый тег
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Эта операция добавит тег "" выбранным документам .
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Эта операция добавит теги  к  выбранному(ым) документу(ам).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Эта операция удалит теги "" с  выбранных документов.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Эта операция удалит теги  из  выбранного(ых) документа(ов).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Эта операция добавит теги  и удалит теги  из  выбранного(ых) документа(ов).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Подтвердите назначения корреспондента
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Эта операция назначит корреспондента ""  выбранным документам.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Эта операция удалит корреспондента из  выбранных документов.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Подтвердите назначение типа документа
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Эта операция присвоит тип ""  выбранным документам.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Эта операция удалит тип из  выбранных документов.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Подтвердите назначение путь хранения
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Эта операция присвоит путь хранения "" к  выбранному(ым) документу(ам).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Эта операция удалит путь хранения из  выбранного(ых) документа(ов).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Сбросить фильтры
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Даты
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Название и содержимое
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Больше похожих
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         совпадает с
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         не заполнено
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         не является пустым
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         больше чем
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         меньше чем
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Без корреспондента
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Без типа документа
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Без пути хранения
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Без тегов
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Название: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         Архивный номер: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Владелец: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Владелец не в: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Без владельца
       
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index 4ffc526dc..60eee4475 100644
--- a/src-ui/src/locale/messages.sk_SK.xlf
+++ b/src-ui/src/locale/messages.sk_SK.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zavrieť
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Predchádzajúci
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Ďalší
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Predchádzajúci mesiac
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Nasledujúci mesiac
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zavrieť
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Vyberte mesiac
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Rozšírené vyhľadávanie
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potvrdiť
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nepriradené
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrovať odosielateľov
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrovať typ dokumentu
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrovať cestu k úložisku
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Zahrnúť:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" a ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          a ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Potvrdiť priradenie štítkov
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Táto akcia pridá štítok ""  vybraným dokumentom.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Táto akcia pridá štítky   vybraným dokumentom.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Táto akcia odstráni štítok  z  vybraným dokumentom.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Táto akcia odstráni štítky  z  vybraných dokumentov.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Táto akcia pridá štítky  a odstráni štítky  z  vybraných dokumentov.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Potvrdiť priradenie odosielateľa
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Táto akcia priradí odosielateľa ""  vybraných dokumentov.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Táto akcia odstráni odosielateľa z  vybraných dokumentov.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Potvrdiť priradenie typu dokumentu
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Táto akcia priradí typ dokumentu ""  vybranému dokumentu(-om).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Táto akcia odstráni typ dokumentu z  vybraných dokumentov.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Potvrdiť cestu k úložisku
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Táto akcia priradí cestu k úložisku ""  vybraným dokumentom.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Táto akcia odstráni cestu k úložisku z  vybraných dokumentov.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Zrušiť filtre
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Názov & obsah
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Podobné
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         rovná sa
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         je prázdny
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         nie je prázdny
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         väčšie ako
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         menšie ako
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Nepriradené
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Nepriradené
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Nepriradené
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Nepriradené
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Názov: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Vlastník: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Vlastník nie je: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Bez vlastníka
       
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 3979e22a3..7d5e92454 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zapri
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Prejšnji
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Naslednji
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Prejšnji mesec
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Naslednji mesec
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zapri
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Izberi mesec
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Napredno iskanje
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potrdi
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Ni dodeljeno
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Odpri filter 
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Ponovno procesiraj
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Zavrti
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Dokumente je mogoče obnoviti pred dokončnim izbrisom.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Premakni v smetnjak
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Potrdi vnovično procesiranje
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Potrdi vrtenje
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrirajte dopisnike
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrirajte vrste dokumentov
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtriraj poti shrambe
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Polja po meri
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtriraj polja po meri
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Združi
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Vključi:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Arhivirane datoteke
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Izvirne datoteke
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Uporaba formatiranega imena datoteke
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Napaka pri izvajanju obsežne operacije
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" in ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          in ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Potrdite dodelitev oznak
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Ta operacija bo dodala oznako "" izbranemu dokumentu .
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Ta operacija bo dodala oznake  na izbrane  dokumente.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Ta operacija bo odstranila oznako "" iz izbranega  dokumenta(ov).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Ta operacija bo odstranila oznake  iz  izbranih dokumentov.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Ta operacija bo dodala oznake  in odstranila oznake  na  izbranih dokumentih.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Potrdite dopisnika
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Ta operacija bo dodelila ustrezniega dopisnika "" izbranemu  dokumentu(om).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Ta operacija bo odstranila dopisnika iz  izbranih dokumentov.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Potrdite dodelitev vrste dokumenta
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Ta operacija bo dodelila vrsto dokumenta ""  izbranim dokumentom.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Ta operacija bo odstranila vrsto dokumenta iz  izbranih dokumentov.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Potrdite dodelitev oznak poti
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Ta operacija bo dodelila pot shranjevanja "" v  izbran dokument/e.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Ta operacija bo odstranila pot shranjevanja iz  izbranih dokumentov.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Potrdi dodelitev polja po meri
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         To dejanje bo dodalo polje  na  izbranih dokumentov.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         To dejanje bo dodalo polja  na  izbranih dokumentov.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         To dejanje bo odstranilo polje  iz  izbranih dokumentov.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         To dejanje bo odstranilo polja  iz  izbranih dokumentov.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         To dejanje bo dodalo polja  ter izbrisalo polja  na  izbranih dokumentov.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Premakni  izbranih dokumentov v smetnjak?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         To dejanje bo dokončno poustvarilo arhivske datoteke za  izbranih dokumentov.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Arhivske datoteke bodo poustvarjene s trenutnimi nastavitvami.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         To dejanje bo dokončno zavrtelo izvirne različice  dokumentov.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Potrdi združevanje
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         To dejanje bo združilo  izbranih dokumentov v nov dokument.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Združeni dokumenti bodo postavljeni v čakalno vrsto za obdelavo.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Ponastavi filtre
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datumi
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Naslov & vsebina
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Bolj podobno
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         je enako
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         je prazno
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         ni prazno
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         večje kot
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         manj kot
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Dopisnik: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Brez dopisnika
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Vrsta dokumenta: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Brez vrste dokumenta
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Pot do shrambe: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Brez poti shrambe
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Oznaka: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Brez kakršne koli oznake
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Poizvedba po poljih po meri
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Naslov: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Lastnik: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Lastnika ni v: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Brez lastnika
       
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index eea8e64e0..fe97c3df6 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Zatvori
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Prethodni
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Sledeći
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Prethodni mesec
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Naredni mesec
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Zatvori
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Odaberi mesec
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Napredna pretraga
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Potvrdi
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Nije dodeljen
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Otvori  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Ponovo obradi
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotiraj
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Dokumenti se mogu obnoviti pre trajnog brisanja.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Premesti u otpad
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Potvrda ponovnog procesuiranja
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Potvrdi rotaciju
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtriraj korespondente
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtriraj tip dokumenta
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtriraj po putanji skladišta
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Dodatna polja
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filtriraj prilagođena polja
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Postavi vrednosti
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Spoji
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Uključi:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Arhivski fajlovi
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Originalni fajlovi
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Koristi formatirani naziv fajla
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Greška pri izvršavanju grupne operacije
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" i ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          i ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Potvrdi dodelu oznaka
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Ova operacija će dodati oznaku "" to  na selektovan(a) dokument(a).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Ova operacija će dodati oznake  na  selektovan(e) dokument(e).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Ova radnja će obrisati oznaku "" iz  selektovanih dokumenata.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Ova radnja će obrisati oznake  iz  selektovanih dokumenata.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Ova radnja će dodati oznake  i ukloniti oznake  na  selektovanim dokumentima.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Potvrdi dodelu korespondenta
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Ova radnja će dodati korespondenta "" na  selektovana dokumenta.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Ova radnja će obrisati korespondente sa  selektovanih dokumenata.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Potvrdi dodelu tipa dokumenta
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Ova radnja će dodati tip dokumenta "" na  selektovane dokumente.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Ova radnja će obrisati tip dokumenta sa  selektovanih dokumenata.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Potvrdi dodelu putanje skladišta
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Ova radnja će dodati putanju skladišta "" na  selektovane dokumente.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Ova radnja će obrisati putanju skladišta  selektovanih dokumenata.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Potvrdi dodeljivanje prilagođenog polja
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Ova radnja će dodeliti prilagođena polja "" na  odabranim dokumentima.
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Ova radnja će dodeliti prilagođena polja  na  odabrana dokumenta.
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Ova radnja će ukloniti prilagođeno polje "" iz  odabranih dokumenata.
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Ova radnja će ukloniti prilagođeno polja  iz  odabranih dokumenata.
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Ova radnja će dodeliti prilagođena polja  i ukloniti prilagođena polja  na  ovim odabranim dokumentima.
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Premesti  odabrana dokumenta u otpad?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Ova radnja će trajno ponovo kreirati arhivske fajlove za  odabranih dokumenata.
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Arhivski fajlovi će biti ponovo generisani sa trenutnim podešavanjima.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Ova radnja će trajno rotirati originalnu verziju  dokumenata.
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Potvrdi spajanje
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Ova radnje će spojiti  u novi dokument.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Spojeni dokument će biti stavljen u red za obradu.
       
@@ -8559,7 +8559,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Poništavanje filtera
       
@@ -8587,7 +8587,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8799,7 +8799,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datumi
       
@@ -8807,7 +8807,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Naslov i sadržaj
       
@@ -8815,7 +8815,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         Vrsta fajla
       
@@ -8823,7 +8823,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Slično
       
@@ -8831,7 +8831,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         jednako
       
@@ -8839,7 +8839,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         je prazan
       
@@ -8847,7 +8847,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         nije prazan
       
@@ -8855,7 +8855,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         veće od
       
@@ -8863,71 +8863,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         manje od
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Korespondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Bez korespondenta
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Tip dokumenta: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Bez tipa dokumenta
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Putanja skladišta: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Bez putanje skladišta
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Oznaka: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Bez oznake
       
@@ -8935,7 +8935,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Upit za prilagođeno polje
       
@@ -8943,7 +8943,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Naslov: 
       
@@ -8951,7 +8951,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8959,7 +8959,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Vlasnik: 
       
@@ -8967,7 +8967,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Vlasnik nije: 
       
@@ -8975,7 +8975,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Bez vlasnika
       
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 79e553680..a15baba36 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Stäng
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Föregående
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Nästa
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Föregående månad
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Nästa månad
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Stäng
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Välj månad
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Avancerad sökning
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Bekräfta
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Inte tilldelad
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Behandla igen
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotera
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filtrera korrespondenter
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filtrera dokument typ
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filtrera lagringsplatser
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Slå ihop
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Inkludera:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" och ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
         " och ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Bekräfta tilldelning av taggar
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Denna åtgärd kommer att lägga till taggen "" till  valda dokument.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Den här åtgärden kommer lägga till taggarna  till  de valda dokumenten.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Denna åtgärd kommer att ta bort taggen "" från  valda dokument.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Den här åtgärden kommer ta bort taggarna  från  de valda dokumenten.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Den här åtgärden kommer lägga till taggarna  och ta bort taggarna  på  de valda dokumenten.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Bekräfta korrespondenttilldelning
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Den här åtgärden kommer att tilldela korrespondenten "" till  valda dokument.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Den här åtgärden kommer att ta bort korrespondenten från  valda dokument.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Bekräfta tilldelning av dokumenttyp
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Den här åtgärden kommer att tilldela dokumenttypen "" till  valda dokument.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Den här åtgärden kommer att ta bort dokumenttypen från  valda dokument.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Bekräfta tilldelning av lagringsplats
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Den här åtgärden kommer att tilldela lagringsplatsen "" till  valda dokument.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Den här åtgärden kommer att ta bort lagringsplatsen från  valda dokument.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Återställ filter
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Datum
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Titel & innehåll
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Mer som
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         är lika med
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         är tom
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         är inte tom
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         större än
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         mindre än
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Utan korrespondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Utan dokumenttyp
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Utan lagringsplats
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Utan tagg
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Titel: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Ägare: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Ägare ej i: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Utan ägare
       
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index 6ee3474d4..eb5d3b315 100644
--- a/src-ui/src/locale/messages.th_TH.xlf
+++ b/src-ui/src/locale/messages.th_TH.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         ปิด
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         ก่อนหน้า
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         ถัดไป
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         เดือนก่อนหน้า
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         เดือนถัดไป
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         ชช
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         ปิด
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         เลือกเดือน
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         ค้นหาขั้นสูง
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         ยืนยัน
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         ไม่กำหนด
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Filter correspondents
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Filter document types
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         กรองพาธจัดเก็บ
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         รวม:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" และ ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          และ ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         รีเซ็ตตัวกรอง
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         ชื่อ & เนื้อหา
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         อื่น ๆ ที่คล้ายกัน
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         เท่ากับ
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         ว่างเปล่า
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         ไม่ว่างเปล่า
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         มากกว่า
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         น้อยกว่า
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         ไม่มีพาธจัดเก็บ
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         ไม่มีแท็กใด ๆ
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         ไม่มีเจ้าของ
       
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 667e52034..ce0940792 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Kapat
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Önceki
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Sonraki
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Önceki ay
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Sonraki ay
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Kapat
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Ay seçin
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Gelişmiş arama
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Onayla
       
@@ -5756,7 +5756,7 @@ tüm  krite
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Atanmadı
@@ -5765,7 +5765,7 @@ tüm  krite
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
          filtresini aç
       
@@ -7063,7 +7063,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7148,7 +7148,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7180,7 +7180,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7228,7 +7228,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7264,7 +7264,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7272,7 +7272,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7292,7 +7292,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7300,7 +7300,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7320,7 +7320,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7328,7 +7328,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7648,7 +7648,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7660,7 +7660,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7680,7 +7680,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7772,7 +7772,7 @@ tüm  krite
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7884,11 +7884,11 @@ tüm  krite
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Muhabire göre filtrele
       
@@ -7896,11 +7896,11 @@ tüm  krite
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Belge türlerini göre filtrele
       
@@ -7908,11 +7908,11 @@ tüm  krite
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Filter storage paths
       
@@ -7920,15 +7920,15 @@ tüm  krite
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7936,7 +7936,7 @@ tüm  krite
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7944,7 +7944,7 @@ tüm  krite
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7952,7 +7952,7 @@ tüm  krite
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7960,7 +7960,7 @@ tüm  krite
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Include:
       
@@ -7968,7 +7968,7 @@ tüm  krite
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7976,7 +7976,7 @@ tüm  krite
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7984,7 +7984,7 @@ tüm  krite
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7992,7 +7992,7 @@ tüm  krite
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -8000,11 +8000,11 @@ tüm  krite
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8012,7 +8012,7 @@ tüm  krite
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" ve ""
@@ -8021,7 +8021,7 @@ tüm  krite
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          ve ""
@@ -8030,7 +8030,7 @@ tüm  krite
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Etiket atanmayi doğrulayın
       
@@ -8038,7 +8038,7 @@ tüm  krite
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Bu işlem "" etiketini  seçili belge(ye/lere) ekliyecektir.
       
@@ -8046,7 +8046,7 @@ tüm  krite
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8054,7 +8054,7 @@ tüm  krite
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Bu işlem "" etiketini  seçili belge(den/lerden) kaldıracaktır.
       
@@ -8062,7 +8062,7 @@ tüm  krite
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8070,7 +8070,7 @@ tüm  krite
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Bu işlem  olan secili belge(ye/lere)  etiketlerini ekliyecektir ve  olan etiketlerini çıkartacaktır.
       
@@ -8078,7 +8078,7 @@ tüm  krite
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Muhabir atanmayı onaylayın
       
@@ -8086,7 +8086,7 @@ tüm  krite
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Bu işlem "" muhabirini  seçili belge(ye/lere) atıyacaktır.
       
@@ -8094,7 +8094,7 @@ tüm  krite
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Bu işlem, muhabiri "" seçili belge(den/lerden) kaldıracaktır.
       
@@ -8102,7 +8102,7 @@ tüm  krite
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Belge türü atanmayı onaylayın
       
@@ -8110,7 +8110,7 @@ tüm  krite
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Bu işlem "" belge türünü  seçili belge(ye/lere) atıyacaktır.
       
@@ -8118,7 +8118,7 @@ tüm  krite
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Bu işlem, belge türünü "" seçili belge(den/lerden) kaldıracaktır.
       
@@ -8126,7 +8126,7 @@ tüm  krite
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8134,7 +8134,7 @@ tüm  krite
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8142,7 +8142,7 @@ tüm  krite
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8150,7 +8150,7 @@ tüm  krite
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8158,7 +8158,7 @@ tüm  krite
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8166,7 +8166,7 @@ tüm  krite
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8174,7 +8174,7 @@ tüm  krite
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8182,7 +8182,7 @@ tüm  krite
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8190,7 +8190,7 @@ tüm  krite
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8198,7 +8198,7 @@ tüm  krite
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8206,7 +8206,7 @@ tüm  krite
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8214,7 +8214,7 @@ tüm  krite
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8222,7 +8222,7 @@ tüm  krite
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8230,7 +8230,7 @@ tüm  krite
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8238,7 +8238,7 @@ tüm  krite
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8246,7 +8246,7 @@ tüm  krite
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8560,7 +8560,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Filtreleri sıfırla
       
@@ -8588,7 +8588,7 @@ tüm  krite
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8800,7 +8800,7 @@ tüm  krite
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8808,7 +8808,7 @@ tüm  krite
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Başlık & İçerik
       
@@ -8816,7 +8816,7 @@ tüm  krite
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8824,7 +8824,7 @@ tüm  krite
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Benzeri gibi
       
@@ -8832,7 +8832,7 @@ tüm  krite
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         eşittir
       
@@ -8840,7 +8840,7 @@ tüm  krite
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         boş
       
@@ -8848,7 +8848,7 @@ tüm  krite
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         boş değil
       
@@ -8856,7 +8856,7 @@ tüm  krite
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8864,71 +8864,71 @@ tüm  krite
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Muhabiri olmayan
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Belge türü olmayan
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Herhangi bir etiket olmayan
       
@@ -8936,7 +8936,7 @@ tüm  krite
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8944,7 +8944,7 @@ tüm  krite
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Başlık: 
       
@@ -8952,7 +8952,7 @@ tüm  krite
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8960,7 +8960,7 @@ tüm  krite
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8968,7 +8968,7 @@ tüm  krite
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8976,7 +8976,7 @@ tüm  krite
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 86b51e4cd..a519bfcf2 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Закрити
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Попередній
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Наступний
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Попередній місяць
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Наступний місяць
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         ГГ
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Закрити
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Оберіть місяць
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Розширений пошук
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Підтвердити
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Не призначено
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Відкрити  фільтр
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Переопрацювати
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Повернути
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Документи можуть бути відновлені перед остаточним видаленням.
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Перемістити у смітник
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Підтвердити повторну обробку
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Підтвердження повороту
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Фільтрувати кореспондентів
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Фільтрувати типи документів
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Фільтрувати шляхи зберігання
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Власні поля
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Фільтрувати спеціальні поля
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Об'єднати
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Включити:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Архівовані файли
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Оригінальні файли
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Використовувати відформатовану назву файлу
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Помилка виконання групової операції
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" і ""
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          і ""
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Підтвердити призначення тегів
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         Ця операція додасть тег "" до  вибраних файлів.
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         Ця операція додасть теги  до  вибраних документів.
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         Ця операція видалить тег "" з  вибраних документів.
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         Ця операція видалить теги "" з  вибраних документів.
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         Ця операція додасть теги "" і видалить теги  з  вибраних документів.
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Підтвердьте призначення кореспондента
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         Ця операція призначить кореспондента "" до  вибраних документів.
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         Ця операція видалить кореспондента з  вибраних документів.
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Підтвердьте призначення типу документа
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         Ця операція призначить тип документа "" до  вибраних документів.
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         Ця операція видалить тип документа з  вибраних документів.
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Підтвердьте призначення шляху сховища
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         Ця операція призначить шлях зберігання "" до  вибраних документів.
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         Ця операція видалить шлях зберігання з  вибраних документів.
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Підтвердити призначення користувацького поля
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         Ця операція призначить користувацьке поле "" до  обраного(их) документа(ів).
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         Ця операція призначить користувацькі поля  до  обраного(их) документа(ів).
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         Ця операція видалить користувацьке поле "" з  обраного(их) документа(ів).
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         Ця операція видалить користувацькі поля  з  обраного(их) документа(ів).
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         Ця операція призначить користувацькі поля  та видалить користувацькі поля  на  обраногому(их) документі(ах).
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Перемістити  обраний(х) документ(ів) до смітника?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         Ця операція остаточно відновить архівні файли для  вибраного(их) документа(ів).
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         Файли архіву будуть повторно згенеровані з поточними налаштуваннями.
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         Ця операція остаточно поверне оригінальну версію  документа(ів).
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Підтвердити об’єднання
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         Ця операція об’єднає  вибраних документів у новий документ.
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Об'єднаний документ буде додано в чергу на одбір.
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Скинути фільтри
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Дати
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Назва та вміст
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         Більше схожих
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         дорівнює
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         не заповнено
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         заповнено
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         більше ніж
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         менше ніж
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Без кореспондента
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Без типу документа
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Без шляху зберігання
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Без жодного тегу
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Назва: 
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         АСН: 
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Власник: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Власник не в: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Без власника
       
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index e4e9b865d..c560a820e 100644
--- a/src-ui/src/locale/messages.vi_VN.xlf
+++ b/src-ui/src/locale/messages.vi_VN.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         Đóng
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         Trước
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         Tiếp
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         Tháng trước
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         Tháng sau
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Đóng
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         Chọn tháng
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         Tìm kiếm nâng cao
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2763,15 +2763,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3236,7 +3236,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3432,27 +3432,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         Xác nhận
       
@@ -4158,7 +4158,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
           15
         
-        IMAP Port
+        Cổng IMAP
       
       
         IMAP Security
@@ -4166,7 +4166,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
           16
         
-        IMAP Security
+        Bảo mật IMAP
       
       
         Password
@@ -4190,7 +4190,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
           21
         
-        Password is token
+        Mật khẩu là chữ kí số
       
       
         Check if the password above is a token used for authentication
@@ -4198,7 +4198,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
           21
         
-        Check if the password above is a token used for authentication
+        Kiểm tra xem mật khẩu ở trên có phải là chữ kí số được sử dụng để xác thực không
       
       
         Character Set
@@ -4230,7 +4230,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
           25
         
-        SSL
+        SSL
       
       
         STARTTLS
@@ -4246,7 +4246,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
           60
         
-        Create new mail account
+        Tạo mới tài khoản thư điện tử
       
       
         Edit mail account
@@ -4254,7 +4254,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
           64
         
-        Edit mail account
+        Sửa tài khoản thư điện tử
       
       
         Successfully connected to the mail server
@@ -4262,7 +4262,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
           109
         
-        Successfully connected to the mail server
+        Đã kết nối thành công tới máy chủ thư điện tử
       
       
         Unable to connect to the mail server
@@ -4270,7 +4270,7 @@
           src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
           110
         
-        Unable to connect to the mail server
+        Không thể kết nối tới máy chủ thử điện tử
       
       
         Account
@@ -4282,7 +4282,7 @@
           src/app/components/manage/mail/mail.component.html
           113
         
-        Account
+        Tài khoản
       
       
         Order
@@ -4350,7 +4350,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
           33
         
-        Filter from
+        Biểu mẫu lọc
       
       
         Filter to
@@ -4414,7 +4414,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
           47
         
-        Include only files matching
+        Chỉ bao gồm các tệp khớp với
       
       
         Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
@@ -4434,7 +4434,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
           48
         
-        Exclude files matching
+        Loại trừ các tệp khớp với
       
       
         Action
@@ -4466,7 +4466,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
           58
         
-        Assign title from
+        Gán tiêu đề từ
       
       
         Assign owner from rule
@@ -4562,7 +4562,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           54
         
-        Process message as .eml
+        Xử lý tin nhắn dưới dạng .eml
       
       
         Process message as .eml and attachments separately
@@ -4570,7 +4570,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           58
         
-        Process message as .eml and attachments separately
+        Xử lý tin nhắn dưới dạng .eml và các tệp đính kèm riêng biệt
       
       
         System default
@@ -4578,7 +4578,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           65
         
-        System default
+        Mặc định hệ thống
       
       
         Text, then HTML
@@ -4586,7 +4586,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           69
         
-        Text, then HTML
+        Văn bản trước, sau đó HTML
       
       
         HTML, then text
@@ -4594,7 +4594,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           73
         
-        HTML, then text
+        HTML trước, sau đó văn bản
       
       
         HTML only
@@ -4602,7 +4602,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           77
         
-        HTML only
+        Chỉ HTML
       
       
         Text only
@@ -4610,7 +4610,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           81
         
-        Text only
+        Chỉ văn bản
       
       
         Move to specified folder
@@ -4626,7 +4626,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           96
         
-        Mark as read, don't process read mails
+        Đánh dấu là đã đọc, không xử lý thư đã đọc
       
       
         Flag the mail, don't process flagged mails
@@ -4634,7 +4634,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           100
         
-        Flag the mail, don't process flagged mails
+        Gắn cờ thư, không xử lý thư đã được gắn cờ
       
       
         Tag the mail with specified tag, don't process tagged mails
@@ -4642,7 +4642,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           104
         
-        Tag the mail with specified tag, don't process tagged mails
+        Gắn thẻ thư với thẻ được chỉ định, không xử lý thư đã được gắn thẻ
       
       
         Use subject as title
@@ -4650,7 +4650,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           111
         
-        Use subject as title
+        Sử dụng chủ đề làm tiêu đề
       
       
         Use attachment filename as title
@@ -4658,7 +4658,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           115
         
-        Use attachment filename as title
+        Sử dụng tên tệp đính kèm làm tiêu đề
       
       
         Do not assign title from this rule
@@ -4666,7 +4666,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           119
         
-        Do not assign title from this rule
+        Không gán tiêu đề từ quy tắc này
       
       
         Do not assign a correspondent
@@ -4674,7 +4674,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           126
         
-        Do not assign a correspondent
+        Không gán người liên lạc
       
       
         Use mail address
@@ -4682,7 +4682,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           130
         
-        Use mail address
+        Sử dụng địa chỉ thư điện tử
       
       
         Use name (or mail address if not available)
@@ -4690,7 +4690,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           134
         
-        Use name (or mail address if not available)
+        Tên người dùng (hoặc địa chỉ thư điện tử nếu có)
       
       
         Use correspondent selected below
@@ -4698,7 +4698,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           138
         
-        Use correspondent selected below
+        Thiết lập người liên lạc được chọn bên dưới
       
       
         Create new mail rule
@@ -4706,7 +4706,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           190
         
-        Create new mail rule
+        Tạo quy tắc thư mới
       
       
         Edit mail rule
@@ -4714,7 +4714,7 @@
           src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
           194
         
-        Edit mail rule
+        Sửa quy tắc thư
       
       
         Path
@@ -4734,7 +4734,7 @@
           src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
           13
         
-        See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>.
+        ;.
       
       
         Preview
@@ -4754,7 +4754,7 @@
           src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
           30
         
-        Path test failed
+        Kiểm tra đường dẫn thất bại
       
       
         No document selected
@@ -4762,7 +4762,7 @@
           src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
           32
         
-        No document selected
+        Không có tài liệu nào được chọn
       
       
         Search for a document
@@ -4770,7 +4770,7 @@
           src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
           38
         
-        Search for a document
+        Tìm kiếm một tài liệu
       
       
         No documents found
@@ -4782,7 +4782,7 @@
           src/app/components/common/input/document-link/document-link.component.ts
           63
         
-        No documents found
+        Không tìm thấy tài liệu nào
       
       
         Create new storage path
@@ -4862,7 +4862,7 @@
           src/app/components/document-detail/document-detail.component.html
           96
         
-        Email
+        Thư điện tử
       
       
         First name
@@ -4874,7 +4874,7 @@
           src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
           30
         
-        First name
+        Tên
       
       
         Last name
@@ -4886,7 +4886,7 @@
           src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
           31
         
-        Last name
+        Họ
       
       
         Active
@@ -4894,7 +4894,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
           22
         
-        Active
+        Hoạt động
       
       
         Admin
@@ -4902,7 +4902,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
           26
         
-        Admin
+        Quản trị viên
       
       
         Access logs, Django backend
@@ -4926,7 +4926,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
           30
         
-        (Grants all permissions and can view objects)
+        (Cấp tất cả quyền và có thể xem các đối tượng)
       
       
         Two-factor Authentication
@@ -4970,7 +4970,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
           71
         
-        Create new user account
+        Tạo mới tài khoản người dùng
       
       
         Edit user account
@@ -4978,7 +4978,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
           75
         
-        Edit user account
+        Sửa tài khoản người dùng
       
       
         Totp deactivated
@@ -4986,7 +4986,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
           131
         
-        Totp deactivated
+        Totp đã bị vô hiệu hóa
       
       
         Totp deactivation failed
@@ -4998,7 +4998,7 @@
           src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
           139
         
-        Totp deactivation failed
+        Hủy kích hoạt Totp không thành công
       
       
         Sort order
@@ -5046,7 +5046,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           73
         
-        Apply Actions:
+        Áp dụng các hành động:
       
       
         Add Action
@@ -5054,7 +5054,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           75
         
-        Add Action
+        Thêm hành động
       
       
         Trigger type
@@ -5070,7 +5070,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           123
         
-        Set scheduled trigger offset and which date field to use.
+        Thiết lập khoảng thời gian kích hoạt theo lịch và trường ngày nào sẽ được sử dụng.
       
       
         Offset days
@@ -5078,7 +5078,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           126
         
-        Offset days
+        Số ngày bù/trễ
       
       
         Relative to
@@ -5086,7 +5086,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           129
         
-        Relative to
+        Liên quan đến
       
       
         Custom field
@@ -5126,7 +5126,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           143
         
-        Recurring interval days
+        Số ngày lặp lại theo khoảng thời gian
       
       
         Repeat the trigger every n days.
@@ -5134,7 +5134,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           143
         
-        Repeat the trigger every n days.
+        Lặp lại kích hoạt sau mỗi n ngày.
       
       
         Trigger for documents that match all filters specified below.
@@ -5206,7 +5206,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           158
         
-        Content matching algorithm
+        Thuật toán khớp nội dung
       
       
         Content matching pattern
@@ -5214,7 +5214,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           160
         
-        Content matching pattern
+        Mẫu khớp nội dung
       
       
         Has any of tags
@@ -5222,7 +5222,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           169
         
-        Has any of tags
+        Có bất kỳ thẻ nào
       
       
         Has correspondent
@@ -5230,7 +5230,7 @@
           src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
           170
         
-        Has correspondent
+        Có người liên lạc
       
       
         Has document type
@@ -5756,7 +5756,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         Không được gán
@@ -5765,7 +5765,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         Open  filter
       
@@ -7063,7 +7063,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7148,7 +7148,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         Reprocess
       
@@ -7180,7 +7180,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         Rotate
       
@@ -7228,7 +7228,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7264,7 +7264,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7272,7 +7272,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7292,7 +7292,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7300,7 +7300,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7320,7 +7320,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7328,7 +7328,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7648,7 +7648,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         Documents can be restored prior to permanent deletion.
       
@@ -7660,7 +7660,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         Move to trash
       
@@ -7680,7 +7680,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         Reprocess confirm
       
@@ -7772,7 +7772,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         Rotate confirm
       
@@ -7884,11 +7884,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         Lọc biên tập viên
       
@@ -7896,11 +7896,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         Lọc loại tài liệu
       
@@ -7908,11 +7908,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         Lọc đường dẫn lưu
       
@@ -7920,15 +7920,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         Custom fields
       
@@ -7936,7 +7936,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         Filter custom fields
       
@@ -7944,7 +7944,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         Set values
       
@@ -7952,7 +7952,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         Merge
       
@@ -7960,7 +7960,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         Bao gồm:
       
@@ -7968,7 +7968,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         Archived files
       
@@ -7976,7 +7976,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         Original files
       
@@ -7984,7 +7984,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         Use formatted filename
       
@@ -7992,7 +7992,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         Error executing bulk operation
       
@@ -8000,11 +8000,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         ""
       
@@ -8012,7 +8012,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         "" and ""
@@ -8021,7 +8021,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          and ""
@@ -8030,7 +8030,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         Confirm tags assignment
       
@@ -8038,7 +8038,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         This operation will add the tag "" to  selected document(s).
       
@@ -8046,7 +8046,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         This operation will add the tags  to  selected document(s).
       
@@ -8054,7 +8054,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         This operation will remove the tag "" from  selected document(s).
       
@@ -8062,7 +8062,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         This operation will remove the tags  from  selected document(s).
       
@@ -8070,7 +8070,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         This operation will add the tags  and remove the tags  on  selected document(s).
       
@@ -8078,7 +8078,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         Confirm correspondent assignment
       
@@ -8086,7 +8086,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         This operation will assign the correspondent "" to  selected document(s).
       
@@ -8094,7 +8094,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         This operation will remove the correspondent from  selected document(s).
       
@@ -8102,7 +8102,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         Confirm document type assignment
       
@@ -8110,7 +8110,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         This operation will assign the document type "" to  selected document(s).
       
@@ -8118,7 +8118,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         This operation will remove the document type from  selected document(s).
       
@@ -8126,7 +8126,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         Confirm storage path assignment
       
@@ -8134,7 +8134,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         This operation will assign the storage path "" to  selected document(s).
       
@@ -8142,7 +8142,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         This operation will remove the storage path from  selected document(s).
       
@@ -8150,7 +8150,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         Confirm custom field assignment
       
@@ -8158,7 +8158,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         This operation will assign the custom field "" to  selected document(s).
       
@@ -8166,7 +8166,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         This operation will assign the custom fields  to  selected document(s).
       
@@ -8174,7 +8174,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         This operation will remove the custom field "" from  selected document(s).
       
@@ -8182,7 +8182,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         This operation will remove the custom fields  from  selected document(s).
       
@@ -8190,7 +8190,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
       
@@ -8198,7 +8198,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         Move  selected document(s) to the trash?
       
@@ -8206,7 +8206,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         This operation will permanently recreate the archive files for  selected document(s).
       
@@ -8214,7 +8214,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         The archive files will be re-generated with the current settings.
       
@@ -8222,7 +8222,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         This operation will permanently rotate the original version of  document(s).
       
@@ -8230,7 +8230,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         Merge confirm
       
@@ -8238,7 +8238,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         This operation will merge  selected documents into a new document.
       
@@ -8246,7 +8246,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         Merged document will be queued for consumption.
       
@@ -8560,7 +8560,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         Reset filters
       
@@ -8588,7 +8588,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8800,7 +8800,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         Dates
       
@@ -8808,7 +8808,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         Title & content
       
@@ -8816,7 +8816,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8824,7 +8824,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         More like
       
@@ -8832,7 +8832,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         equals
       
@@ -8840,7 +8840,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         is empty
       
@@ -8848,7 +8848,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         is not empty
       
@@ -8856,7 +8856,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         greater than
       
@@ -8864,71 +8864,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         less than
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        Correspondent: 
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         Without correspondent
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        Document type: 
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         Without document type
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        Storage path: 
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         Without storage path
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        Tag: 
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         Without any tag
       
@@ -8936,7 +8936,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         Custom fields query
       
@@ -8944,7 +8944,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         Title: 
       
@@ -8952,7 +8952,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN: 
       
@@ -8960,7 +8960,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         Owner: 
       
@@ -8968,7 +8968,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         Owner not in: 
       
@@ -8976,7 +8976,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         Without an owner
       
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index a11dec423..1f3a631aa 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         关闭
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         上一个
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         下一个
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         上个月
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         下个月
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         关闭
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         选择月份
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         高级搜索
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         确认
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         未分配
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         开启过滤
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         , 
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         重新处理
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         旋转
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         文档可以在永久删除之前还原。
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         移动到回收站
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         确认重新处理
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         过滤联系人
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         过滤文档类型
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         筛选存储路径
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         自定义字段
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         设置数值
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         合并
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         包含:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         归档文件
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         原始文件
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         使用格式化文件名
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         执行批量操作时发生错误
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
          和 
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
          和 
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         确认标签分配
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         此操作将把标签“”添加到  个选定的文档。
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         此操作将添加标签  到  选定的文档。
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         此操作将从  个选定的文档中移除标签“”。
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         此操作将从  选定的文档中删除标签 。
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         此操作将添加标签  并删除选定文档  上的标签 。
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         确认联系人分配
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         此操作将分配联系人 "" 到  个选定的文档。
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         此操作将从  个选定文档中移除联系人。
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         确认文件类型分配
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         此操作将把文档类型 " 分配到  个选定的文档。
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         此操作将从  个选定文档中删除文档类型。
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         确认存储路径分配
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         此操作将将存储路径" 分配给  选定的文档。
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         此操作将从  选定文档中移除存储路径。
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         重置过滤器
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         日期
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         标题 & 内容
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         File type
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         更多
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         等于
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         为空
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         不为空
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         高于
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         低于
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        对应方:
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         没有联系人
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        文档类型:
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         没有文档类型
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        存储路径:
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         没有存储路径
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        标签:
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         没有任何标签
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         自定义字段查询
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         标题:
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         ASN:
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         所有者: 
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         所有者不在: 
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         没有所有者
       
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 51f0b0daf..d704e5170 100644
--- a/src-ui/src/locale/messages.zh_TW.xlf
+++ b/src-ui/src/locale/messages.zh_TW.xlf
@@ -5,7 +5,7 @@
       
         Close
         
-          node_modules/src/alert/alert.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/alert/alert.ts
           51
         
         關閉
@@ -13,7 +13,7 @@
       
          Slide  of  
         
-          node_modules/src/carousel/carousel.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
           132,136
         
         Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
       
         Previous
         
-          node_modules/src/carousel/carousel.ts
-          148,149
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          156,160
         
         上一個
       
       
         Next
         
-          node_modules/src/carousel/carousel.ts
-          167,170
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/carousel/carousel.ts
+          196,199
         
         下一個
       
       
         Previous month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           77,79
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
-          97,98
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
+          102
         
         上個月
       
       
         Next month
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         
-          node_modules/src/datepicker/datepicker-navigation.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/datepicker/datepicker-navigation.ts
           102
         
         下個月
@@ -62,7 +62,7 @@
       
         HH
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         HH
@@ -70,7 +70,7 @@
       
         Close
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         關閉
@@ -78,11 +78,11 @@
       
         Select month
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         
-          node_modules/src/ngb-config.ts
+          node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@18.0.0_@angular+common@19.2.0_@angular+core@19.2.0_rxjs@7.8._5a874a4dc94176c096bfcabea2b4273a/node_modules/src/ngb-config.ts
           13
         
         選取月份
@@ -90,7 +90,7 @@
       
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          193
+          190
         
         進階搜尋
       
@@ -1314,11 +1314,11 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          104
+          97
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          106
+          101
         
         
           src/app/components/manage/mail/mail.component.html
@@ -1946,7 +1946,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          110
+          103
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2266,7 +2266,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          164
+          157
         
         
           src/app/components/manage/custom-fields/custom-fields.component.html
@@ -2762,15 +2762,15 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          796
+          794
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          829
+          827
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          848
+          846
         
         
           src/app/components/manage/custom-fields/custom-fields.component.ts
@@ -3234,7 +3234,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          136
+          129
         
         
           src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3430,27 +3430,27 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          439
+          437
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          479
+          477
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          517
+          515
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          555
+          553
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          617
+          615
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          750
+          748
         
         確認
       
@@ -5754,7 +5754,7 @@
         Not assigned
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          392
+          81
         
         Filter drop down element to filter for documents with no correspondent/type/tag assigned
         未被指派的
@@ -5763,7 +5763,7 @@
         Open  filter
         
           src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
-          513
+          554
         
         開啟  篩選器
       
@@ -7061,7 +7061,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          384
+          382
         
         this string is used to separate processing, failed and added on the file upload widget
         ,
@@ -7146,7 +7146,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          114
+          107
         
         重新處理
       
@@ -7178,7 +7178,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          117
+          110
         
         旋轉
       
@@ -7226,7 +7226,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          180
+          177
         
         
           src/app/data/document.ts
@@ -7262,7 +7262,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          37
+          35
         
         
           src/app/components/document-list/document-list.component.html
@@ -7270,7 +7270,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          52
+          50
         
         
           src/app/data/document.ts
@@ -7290,7 +7290,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          52
+          49
         
         
           src/app/components/document-list/document-list.component.html
@@ -7298,7 +7298,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          64
+          61
         
         
           src/app/data/document.ts
@@ -7318,7 +7318,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          67
+          63
         
         
           src/app/components/document-list/document-list.component.html
@@ -7326,7 +7326,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          76
+          72
         
         
           src/app/data/document.ts
@@ -7646,7 +7646,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          752
+          750
         
         文件在永久刪除前可被還原。
       
@@ -7658,7 +7658,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          754
+          752
         
         移至垃圾桶
       
@@ -7678,7 +7678,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          792
+          790
         
         確認重新處理
       
@@ -7770,7 +7770,7 @@
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          826
+          824
         
         確認旋轉
       
@@ -7882,11 +7882,11 @@
         Filter correspondents
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          38
+          36
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          53
+          51
         
         篩選聯絡人
       
@@ -7894,11 +7894,11 @@
         Filter document types
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          53
+          50
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          65
+          62
         
         篩選文件類型
       
@@ -7906,11 +7906,11 @@
         Filter storage paths
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          68
+          64
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          77
+          73
         
         篩選儲存路徑
       
@@ -7918,15 +7918,15 @@
         Custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          82
+          77
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          89
+          84
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          188
+          185
         
         自訂欄位
       
@@ -7934,7 +7934,7 @@
         Filter custom fields
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          83
+          78
         
         篩選自訂欄位
       
@@ -7942,7 +7942,7 @@
         Set values
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          93
+          86
         
         設定數值
       
@@ -7950,7 +7950,7 @@
         Merge
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          120
+          113
         
         合併
       
@@ -7958,7 +7958,7 @@
         Include:
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          142
+          135
         
         包含:
       
@@ -7966,7 +7966,7 @@
         Archived files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          146
+          139
         
         封存檔案
       
@@ -7974,7 +7974,7 @@
         Original files
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          150
+          143
         
         原始檔案
       
@@ -7982,7 +7982,7 @@
         Use formatted filename
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.html
-          155
+          148
         
         使用格式化檔案名稱
       
@@ -7990,7 +7990,7 @@
         Error executing bulk operation
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          288
+          286
         
         執行大量作業時發生錯誤
       
@@ -7998,11 +7998,11 @@
         ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          376
+          374
         
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          382
+          380
         
         「」
       
@@ -8010,7 +8010,7 @@
         "" and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          378
+          376
         
         This is for messages like 'modify "tag1" and "tag2"'
         「」和「」
@@ -8019,7 +8019,7 @@
          and ""
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          386,388
+          384,386
         
         this is for messages like 'modify "tag1", "tag2" and "tag3"'
         和「」
@@ -8028,7 +8028,7 @@
         Confirm tags assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          403
+          401
         
         確認指派標籤
       
@@ -8036,7 +8036,7 @@
         This operation will add the tag "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          409
+          407
         
         將新增標籤「」至  個所選的文件。
       
@@ -8044,7 +8044,7 @@
         This operation will add the tags  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          414,416
+          412,414
         
         將新增標籤  至  個所選的文件。
       
@@ -8052,7 +8052,7 @@
         This operation will remove the tag "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          422
+          420
         
         將從  個所選的文件中移除標籤「」。
       
@@ -8060,7 +8060,7 @@
         This operation will remove the tags  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          427,429
+          425,427
         
         將從  個所選的文件中移除標籤 。
       
@@ -8068,7 +8068,7 @@
         This operation will add the tags  and remove the tags  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          431,435
+          429,433
         
         將於  個所選的文件新增標籤 ,並移除標籤 。
       
@@ -8076,7 +8076,7 @@
         Confirm correspondent assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          472
+          470
         
         確認指派聯絡人
       
@@ -8084,7 +8084,7 @@
         This operation will assign the correspondent "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          474
+          472
         
         將指派聯絡人「」給  個所選的文件。
       
@@ -8092,7 +8092,7 @@
         This operation will remove the correspondent from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          476
+          474
         
         將從  個所選的文件移除聯絡人。
       
@@ -8100,7 +8100,7 @@
         Confirm document type assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          510
+          508
         
         確認指派檔案類型
       
@@ -8108,7 +8108,7 @@
         This operation will assign the document type "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          512
+          510
         
         將指派文件類型「」給  個所選的文件。
       
@@ -8116,7 +8116,7 @@
         This operation will remove the document type from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          514
+          512
         
         將從  個所選取的文件移除文件類型。
       
@@ -8124,7 +8124,7 @@
         Confirm storage path assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          548
+          546
         
         確認指派儲存路徑
       
@@ -8132,7 +8132,7 @@
         This operation will assign the storage path "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          550
+          548
         
         將指派儲存路徑「」給  個所選的文件。
       
@@ -8140,7 +8140,7 @@
         This operation will remove the storage path from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          552
+          550
         
         將從  個所選的文件移除儲存路徑。
       
@@ -8148,7 +8148,7 @@
         Confirm custom field assignment
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          581
+          579
         
         確認指派自訂欄位
       
@@ -8156,7 +8156,7 @@
         This operation will assign the custom field "" to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          587
+          585
         
         將指派自訂欄位「」給  個所選的文件。
       
@@ -8164,7 +8164,7 @@
         This operation will assign the custom fields  to  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          592,594
+          590,592
         
         將指派自訂欄位  給  個所選的文件。
       
@@ -8172,7 +8172,7 @@
         This operation will remove the custom field "" from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          600
+          598
         
         將從  個所選的文件移除自訂欄位「」。
       
@@ -8180,7 +8180,7 @@
         This operation will remove the custom fields  from  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          605,607
+          603,605
         
         將從  個所選的文件移除自訂欄位 。
       
@@ -8188,7 +8188,7 @@
         This operation will assign the custom fields  and remove the custom fields  on  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          609,613
+          607,611
         
         將於  個所選的文件指派自訂欄位 ,並移除自訂欄位 。
       
@@ -8196,7 +8196,7 @@
         Move  selected document(s) to the trash?
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          751
+          749
         
         要將  個所選的文件移至垃圾桶嗎?
       
@@ -8204,7 +8204,7 @@
         This operation will permanently recreate the archive files for  selected document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          793
+          791
         
         將為  個所選取的文件永久重新建立封存檔案。
       
@@ -8212,7 +8212,7 @@
         The archive files will be re-generated with the current settings.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          794
+          792
         
         封存檔案將以目前設定重新產生。
       
@@ -8220,7 +8220,7 @@
         This operation will permanently rotate the original version of  document(s).
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          827
+          825
         
         將永久選轉  個所選文件的原始版本。
       
@@ -8228,7 +8228,7 @@
         Merge confirm
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          846
+          844
         
         合併確認
       
@@ -8236,7 +8236,7 @@
         This operation will merge  selected documents into a new document.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          847
+          845
         
         將  個所選的文件合併成一個新文件。
       
@@ -8244,7 +8244,7 @@
         Merged document will be queued for consumption.
         
           src/app/components/document-list/bulk-editor/bulk-editor.component.ts
-          866
+          864
         
         合併後的文件將排入處理佇列。
       
@@ -8558,7 +8558,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          112
+          107
         
         重置篩選器
       
@@ -8586,7 +8586,7 @@
         
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          185
+          182
         
         
           src/app/data/document.ts
@@ -8798,7 +8798,7 @@
         Dates
         
           src/app/components/document-list/filter-editor/filter-editor.component.html
-          95
+          90
         
         日期
       
@@ -8806,7 +8806,7 @@
         Title & content
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          183
+          180
         
         標題與內容
       
@@ -8814,7 +8814,7 @@
         File type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          190
+          187
         
         檔案類型
       
@@ -8822,7 +8822,7 @@
         More like
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          199
+          196
         
         相似於
       
@@ -8830,7 +8830,7 @@
         equals
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          205
+          202
         
         等於
       
@@ -8838,7 +8838,7 @@
         is empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          209
+          206
         
         為空白
       
@@ -8846,7 +8846,7 @@
         is not empty
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          213
+          210
         
         不為空白
       
@@ -8854,7 +8854,7 @@
         greater than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          217
+          214
         
         大於
       
@@ -8862,71 +8862,71 @@
         less than
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          221
+          218
         
         小於
       
       
-        Correspondent: 
+        Correspondent: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          253,255
+          250,254
         
-        聯絡人:
+        Correspondent: 
       
       
         Without correspondent
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          257
+          256
         
         沒有聯絡人
       
       
-        Document type: 
+        Document type: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          263,265
+          262,266
         
-        文件類型:
+        Document type: 
       
       
         Without document type
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          267
+          268
         
         沒有文件類型
       
       
-        Storage path: 
+        Storage path: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          273,275
+          274,278
         
-        儲存路徑:
+        Storage path: 
       
       
         Without storage path
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          277
+          280
         
         沒有儲存路徑
       
       
-        Tag: 
+        Tag: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          281,283
+          284,286
         
-        標籤:
+        Tag: 
       
       
         Without any tag
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          287
+          290
         
         沒有任何標籤
       
@@ -8934,7 +8934,7 @@
         Custom fields query
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          291
+          294
         
         自訂欄位查詢
       
@@ -8942,7 +8942,7 @@
         Title: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          294
+          297
         
         標題:
       
@@ -8950,7 +8950,7 @@
         ASN: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          297
+          300
         
         封存序號 (ANS):
       
@@ -8958,7 +8958,7 @@
         Owner: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          300
+          303
         
         擁有者:
       
@@ -8966,7 +8966,7 @@
         Owner not in: 
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          303
+          306
         
         擁有者不包含:
       
@@ -8974,7 +8974,7 @@
         Without an owner
         
           src/app/components/document-list/filter-editor/filter-editor.component.ts
-          306
+          309
         
         沒有擁有者
       
diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po
index 6f24a9f15..ecd75207d 100644
--- a/src/locale/id_ID/LC_MESSAGES/django.po
+++ b/src/locale/id_ID/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
 "Project-Id-Version: paperless-ngx\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2025-03-11 13:33-0700\n"
-"PO-Revision-Date: 2025-03-11 20:35\n"
+"PO-Revision-Date: 2025-03-18 00:32\n"
 "Last-Translator: \n"
 "Language-Team: Indonesian\n"
 "Language: id_ID\n"
@@ -274,51 +274,51 @@ msgstr "Kartu Besar"
 
 #: documents/models.py:384
 msgid "Title"
-msgstr ""
+msgstr "Judul"
 
 #: documents/models.py:385 documents/models.py:942
 msgid "Created"
-msgstr ""
+msgstr "Dibuat"
 
 #: documents/models.py:386 documents/models.py:941
 msgid "Added"
-msgstr ""
+msgstr "Ditambahkan"
 
 #: documents/models.py:387
 msgid "Tags"
-msgstr ""
+msgstr "Label"
 
 #: documents/models.py:388
 msgid "Correspondent"
-msgstr ""
+msgstr "Koresponden"
 
 #: documents/models.py:389
 msgid "Document Type"
-msgstr ""
+msgstr "Tipe Dokumen"
 
 #: documents/models.py:390
 msgid "Storage Path"
-msgstr ""
+msgstr "Lokasi Penyimpanan"
 
 #: documents/models.py:391
 msgid "Note"
-msgstr ""
+msgstr "Catatan"
 
 #: documents/models.py:392
 msgid "Owner"
-msgstr ""
+msgstr "Pemilik"
 
 #: documents/models.py:393
 msgid "Shared"
-msgstr ""
+msgstr "Dibagikan"
 
 #: documents/models.py:394
 msgid "ASN"
-msgstr ""
+msgstr "ASN"
 
 #: documents/models.py:395
 msgid "Pages"
-msgstr ""
+msgstr "Halaman"
 
 #: documents/models.py:401
 msgid "show on dashboard"
@@ -526,7 +526,7 @@ msgstr "tidak memiliki area khusus"
 
 #: documents/models.py:489
 msgid "custom fields query"
-msgstr ""
+msgstr "kueri bidang khusus"
 
 #: documents/models.py:490
 msgid "created to"
@@ -566,15 +566,15 @@ msgstr "saring aturan"
 
 #: documents/models.py:534
 msgid "Auto Task"
-msgstr ""
+msgstr "Tugas Otomatis"
 
 #: documents/models.py:535
 msgid "Scheduled Task"
-msgstr ""
+msgstr "Tugas Terjadwal"
 
 #: documents/models.py:536
 msgid "Manual Task"
-msgstr ""
+msgstr "Tugas Manual"
 
 #: documents/models.py:539
 msgid "Consume File"
@@ -666,7 +666,7 @@ msgstr "Data yang dikembalikan dari tugas"
 
 #: documents/models.py:614
 msgid "Task Type"
-msgstr ""
+msgstr "Tipe Tugas"
 
 #: documents/models.py:615
 msgid "The type of task that was run"
@@ -746,7 +746,7 @@ msgstr "Tautan Dokumen"
 
 #: documents/models.py:736
 msgid "Select"
-msgstr ""
+msgstr "Pilih"
 
 #: documents/models.py:748
 msgid "data type"
@@ -754,7 +754,7 @@ msgstr "jenis data"
 
 #: documents/models.py:755
 msgid "extra data"
-msgstr ""
+msgstr "data ekstra"
 
 #: documents/models.py:759
 msgid "Extra data for the custom field, such as select options"
@@ -790,7 +790,7 @@ msgstr "Dokumen diperbarui"
 
 #: documents/models.py:932
 msgid "Scheduled"
-msgstr ""
+msgstr "Dijadwalkan"
 
 #: documents/models.py:935
 msgid "Consume Folder"
@@ -806,15 +806,15 @@ msgstr "Pengambilan Surat"
 
 #: documents/models.py:938
 msgid "Web UI"
-msgstr ""
+msgstr "Antarmuka Web"
 
 #: documents/models.py:943
 msgid "Modified"
-msgstr ""
+msgstr "Dimodifikasi"
 
 #: documents/models.py:944
 msgid "Custom Field"
-msgstr ""
+msgstr "Kolom Khusus"
 
 #: documents/models.py:947
 msgid "Workflow Trigger Type"
@@ -982,7 +982,7 @@ msgstr "Surel"
 
 #: documents/models.py:1176
 msgid "Webhook"
-msgstr ""
+msgstr "Webhook"
 
 #: documents/models.py:1180
 msgid "Workflow Action Type"
@@ -1114,11 +1114,11 @@ msgstr "hapus semua kolom khusus"
 
 #: documents/models.py:1395
 msgid "email"
-msgstr ""
+msgstr "surel"
 
 #: documents/models.py:1404
 msgid "webhook"
-msgstr ""
+msgstr "webhook"
 
 #: documents/models.py:1408
 msgid "workflow action"
@@ -1146,7 +1146,7 @@ msgstr "diaktifkan"
 
 #: documents/models.py:1445
 msgid "workflow"
-msgstr ""
+msgstr "alur kerja"
 
 #: documents/models.py:1449
 msgid "workflow trigger type"
@@ -1188,15 +1188,15 @@ msgstr ""
 
 #: documents/templates/account/account_inactive.html:9
 msgid "Account inactive."
-msgstr ""
+msgstr "Akun tidak aktif."
 
 #: documents/templates/account/account_inactive.html:14
 msgid "This account is inactive."
-msgstr ""
+msgstr "Akun ini tidak aktif."
 
 #: documents/templates/account/account_inactive.html:16
 msgid "Return to login"
-msgstr ""
+msgstr "Kembali ke halaman masuk"
 
 #: documents/templates/account/email/base_message.txt:1
 #, python-format
@@ -1358,11 +1358,11 @@ msgstr ""
 
 #: documents/templates/mfa/authenticate.html:17
 msgid "Code"
-msgstr ""
+msgstr "Kode"
 
 #: documents/templates/mfa/authenticate.html:24
 msgid "Cancel"
-msgstr ""
+msgstr "Batal"
 
 #: documents/templates/paperless-ngx/base.html:58
 msgid "Share link was not found."
@@ -1470,7 +1470,7 @@ msgstr ""
 
 #: paperless/models.py:62
 msgid "none"
-msgstr ""
+msgstr "tidak ada"
 
 #: paperless/models.py:70
 msgid "LeaveColorUnchanged"
@@ -1486,7 +1486,7 @@ msgstr ""
 
 #: paperless/models.py:73
 msgid "Gray"
-msgstr ""
+msgstr "Abu-abu"
 
 #: paperless/models.py:74
 msgid "CMYK"
@@ -1566,7 +1566,7 @@ msgstr "Arab"
 
 #: paperless/settings.py:725
 msgid "Afrikaans"
-msgstr ""
+msgstr "Bahasa Afrika"
 
 #: paperless/settings.py:726
 msgid "Belarusian"
@@ -1574,7 +1574,7 @@ msgstr "Belarusia"
 
 #: paperless/settings.py:727
 msgid "Bulgarian"
-msgstr ""
+msgstr "Bahasa Bulgaria"
 
 #: paperless/settings.py:728
 msgid "Catalan"
@@ -1622,11 +1622,11 @@ msgstr "Italia"
 
 #: paperless/settings.py:739
 msgid "Japanese"
-msgstr ""
+msgstr "Bahasa Jepang"
 
 #: paperless/settings.py:740
 msgid "Korean"
-msgstr ""
+msgstr "Bahasa Korea"
 
 #: paperless/settings.py:741
 msgid "Luxembourgish"
diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po
index 9dcc00f3b..731f99b0d 100644
--- a/src/locale/vi_VN/LC_MESSAGES/django.po
+++ b/src/locale/vi_VN/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
 "Project-Id-Version: paperless-ngx\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2025-03-11 13:33-0700\n"
-"PO-Revision-Date: 2025-03-11 20:35\n"
+"PO-Revision-Date: 2025-03-16 12:11\n"
 "Last-Translator: \n"
 "Language-Team: Vietnamese\n"
 "Language: vi_VN\n"