@if (list.selected.size > 0) {
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 9e83797a6..16b65c84d 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
@@ -173,6 +173,22 @@ const RELATIVE_DATE_QUERYSTRINGS = [
relativeDate: RelativeDate.YESTERDAY,
dateQuery: 'yesterday',
},
+ {
+ relativeDate: RelativeDate.PREVIOUS_WEEK,
+ dateQuery: 'previous week',
+ },
+ {
+ relativeDate: RelativeDate.PREVIOUS_MONTH,
+ dateQuery: 'previous month',
+ },
+ {
+ relativeDate: RelativeDate.PREVIOUS_QUARTER,
+ dateQuery: 'previous quarter',
+ },
+ {
+ relativeDate: RelativeDate.PREVIOUS_YEAR,
+ dateQuery: 'previous year',
+ },
]
const DEFAULT_TEXT_FILTER_TARGET_OPTIONS = [
@@ -400,6 +416,9 @@ export class FilterEditorComponent
@Input()
set filterRules(value: FilterRule[]) {
+ if (value === this._filterRules) {
+ return
+ }
this._filterRules = value
this.documentTypeSelectionModel.clear(false)
@@ -747,7 +766,7 @@ export class FilterEditorComponent
) {
filterRules.push({
rule_type: FILTER_TITLE_CONTENT,
- value: this._textFilter,
+ value: this._textFilter.trim(),
})
}
if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_TITLE) {
@@ -805,7 +824,7 @@ export class FilterEditorComponent
) {
filterRules.push({
rule_type: FILTER_FULLTEXT_QUERY,
- value: this._textFilter,
+ value: this._textFilter.trim(),
})
}
if (
@@ -1098,7 +1117,13 @@ export class FilterEditorComponent
rulesModified: boolean = false
updateRules() {
- this.filterRulesChange.next(this.filterRules)
+ const updatedRules = this.filterRules
+ this._filterRules = updatedRules
+ this.rulesModified = filterRulesDiffer(
+ this._unmodifiedFilterRules,
+ updatedRules
+ )
+ this.filterRulesChange.next(updatedRules)
}
get textFilter() {
diff --git a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
index 604e3fd68..26b63fd56 100644
--- a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+++ b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
@@ -68,7 +68,7 @@
-
+
{{ mail.error }}
diff --git a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss
index 6aadd8330..c87a5c3f6 100644
--- a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss
+++ b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss
@@ -1,5 +1,7 @@
::ng-deep .popover {
max-width: 350px;
+ max-height: 600px;
+ overflow: hidden;
pre {
white-space: pre-wrap;
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
index 95927849a..9c64f5730 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
@@ -361,4 +361,11 @@ describe('ManagementListComponent', () => {
const original = component.getOriginalObject({ id: 4 } as Tag)
expect(original).toEqual(childTag)
})
+
+ it('getSelectableIDs should return flat ids when not overridden', () => {
+ const ids = (
+ ManagementListComponent.prototype as any
+ ).getSelectableIDs.call({}, [{ id: 1 }, { id: 5 }] as any)
+ expect(ids).toEqual([1, 5])
+ })
})
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts
index 60c524c28..7cc3eaf4b 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts
@@ -297,13 +297,19 @@ export abstract class ManagementListComponent
}
toggleAll(event: PointerEvent) {
- if ((event.target as HTMLInputElement).checked) {
- this.selectedObjects = new Set(this.data.map((o) => o.id))
+ const checked = (event.target as HTMLInputElement).checked
+ this.togggleAll = checked
+ if (checked) {
+ this.selectedObjects = new Set(this.getSelectableIDs(this.data))
} else {
this.clearSelection()
}
}
+ protected getSelectableIDs(objects: T[]): number[] {
+ return objects.map((o) => o.id)
+ }
+
clearSelection() {
this.togggleAll = false
this.selectedObjects.clear()
diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
index b4694e145..0db84182b 100644
--- a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
+++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
@@ -17,6 +17,7 @@ describe('TagListComponent', () => {
let component: TagListComponent
let fixture: ComponentFixture
let tagService: TagService
+ let listFilteredSpy: jest.SpyInstance
beforeEach(async () => {
TestBed.configureTestingModule({
@@ -39,7 +40,7 @@ describe('TagListComponent', () => {
}).compileComponents()
tagService = TestBed.inject(TagService)
- jest.spyOn(tagService, 'listFiltered').mockReturnValue(
+ listFilteredSpy = jest.spyOn(tagService, 'listFiltered').mockReturnValue(
of({
count: 3,
all: [1, 2, 3],
@@ -72,9 +73,14 @@ describe('TagListComponent', () => {
)
})
- it('should filter out child tags if name filter is empty, otherwise show all', () => {
+ it('should omit matching children from top level when their parent is present', () => {
const tags = [
- { id: 1, name: 'Tag1', parent: null },
+ {
+ id: 1,
+ name: 'Tag1',
+ parent: null,
+ children: [{ id: 2, name: 'Tag2', parent: 1 }],
+ },
{ id: 2, name: 'Tag2', parent: 1 },
{ id: 3, name: 'Tag3', parent: null },
]
@@ -85,6 +91,65 @@ describe('TagListComponent', () => {
component['_nameFilter'] = 'Tag2' // Simulate non-empty name filter
const filteredWithName = component.filterData(tags as any)
- expect(filteredWithName.length).toBe(3)
+ expect(filteredWithName.length).toBe(2)
+ expect(filteredWithName.find((t) => t.id === 2)).toBeUndefined()
+ expect(
+ filteredWithName
+ .find((t) => t.id === 1)
+ ?.children?.some((c) => c.id === 2)
+ ).toBe(true)
+ })
+
+ it('should request only parent tags when no name filter is applied', () => {
+ expect(tagService.listFiltered).toHaveBeenCalledWith(
+ 1,
+ null,
+ undefined,
+ undefined,
+ undefined,
+ true,
+ { is_root: true }
+ )
+ })
+
+ it('should include child tags when a name filter is applied', () => {
+ listFilteredSpy.mockClear()
+ component['_nameFilter'] = 'Tag'
+ component.reloadData()
+ expect(tagService.listFiltered).toHaveBeenCalledWith(
+ 1,
+ null,
+ undefined,
+ undefined,
+ 'Tag',
+ true,
+ null
+ )
+ })
+
+ it('should include child tags when selecting all', () => {
+ const parent = {
+ id: 10,
+ name: 'Parent',
+ children: [
+ {
+ id: 11,
+ name: 'Child',
+ },
+ ],
+ }
+
+ component.data = [parent as any]
+ const selectEvent = { target: { checked: true } } as unknown as PointerEvent
+ component.toggleAll(selectEvent)
+
+ expect(component.selectedObjects.has(10)).toBe(true)
+ expect(component.selectedObjects.has(11)).toBe(true)
+
+ const deselectEvent = {
+ target: { checked: false },
+ } as unknown as PointerEvent
+ component.toggleAll(deselectEvent)
+ expect(component.selectedObjects.size).toBe(0)
})
})
diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.ts
index 77d42e020..64ca121df 100644
--- a/src-ui/src/app/components/manage/tag-list/tag-list.component.ts
+++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.ts
@@ -61,9 +61,33 @@ export class TagListComponent extends ManagementListComponent {
return $localize`Do you really want to delete the tag "${object.name}"?`
}
+ override reloadData(extraParams: { [key: string]: any } = null) {
+ const params = this.nameFilter?.length
+ ? extraParams
+ : { ...extraParams, is_root: true }
+ super.reloadData(params)
+ }
+
filterData(data: Tag[]) {
- return this.nameFilter?.length
- ? [...data]
- : data.filter((tag) => !tag.parent)
+ if (!this.nameFilter?.length) {
+ return data.filter((tag) => !tag.parent)
+ }
+
+ // When filtering by name, exclude children if their parent is also present
+ const availableIds = new Set(data.map((tag) => tag.id))
+ return data.filter((tag) => !tag.parent || !availableIds.has(tag.parent))
+ }
+
+ protected override getSelectableIDs(tags: Tag[]): number[] {
+ const ids: number[] = []
+ for (const tag of tags.filter(Boolean)) {
+ if (tag.id != null) {
+ ids.push(tag.id)
+ }
+ if (Array.isArray(tag.children) && tag.children.length) {
+ ids.push(...this.getSelectableIDs(tag.children))
+ }
+ }
+ return ids
}
}
diff --git a/src-ui/src/app/services/rest/log.service.spec.ts b/src-ui/src/app/services/rest/log.service.spec.ts
index e3138b895..7eda9c4a3 100644
--- a/src-ui/src/app/services/rest/log.service.spec.ts
+++ b/src-ui/src/app/services/rest/log.service.spec.ts
@@ -49,4 +49,14 @@ describe('LogService', () => {
)
expect(req.request.method).toEqual('GET')
})
+
+ it('should pass limit param on logs get when provided', () => {
+ const id: string = 'mail'
+ const limit: number = 100
+ subscription = service.get(id, limit).subscribe()
+ const req = httpTestingController.expectOne(
+ `${environment.apiBaseUrl}${endpoint}/${id}/?limit=${limit}`
+ )
+ expect(req.request.method).toEqual('GET')
+ })
})
diff --git a/src-ui/src/app/services/rest/log.service.ts b/src-ui/src/app/services/rest/log.service.ts
index a836fa555..d07f7cd69 100644
--- a/src-ui/src/app/services/rest/log.service.ts
+++ b/src-ui/src/app/services/rest/log.service.ts
@@ -1,4 +1,4 @@
-import { HttpClient } from '@angular/common/http'
+import { HttpClient, HttpParams } from '@angular/common/http'
import { Injectable, inject } from '@angular/core'
import { Observable } from 'rxjs'
import { environment } from 'src/environments/environment'
@@ -13,7 +13,13 @@ export class LogService {
return this.http.get(`${environment.apiBaseUrl}logs/`)
}
- get(id: string): Observable {
- return this.http.get(`${environment.apiBaseUrl}logs/${id}/`)
+ get(id: string, limit?: number): Observable {
+ let params = new HttpParams()
+ if (limit !== undefined) {
+ params = params.set('limit', limit.toString())
+ }
+ return this.http.get(`${environment.apiBaseUrl}logs/${id}/`, {
+ params,
+ })
}
}
diff --git a/src-ui/src/app/utils/custom-field-query-element.spec.ts b/src-ui/src/app/utils/custom-field-query-element.spec.ts
index 411dcd6f9..e01af7fd4 100644
--- a/src-ui/src/app/utils/custom-field-query-element.spec.ts
+++ b/src-ui/src/app/utils/custom-field-query-element.spec.ts
@@ -1,4 +1,3 @@
-import { fakeAsync, tick } from '@angular/core/testing'
import {
CustomFieldQueryElementType,
CustomFieldQueryLogicalOperator,
@@ -111,13 +110,38 @@ describe('CustomFieldQueryAtom', () => {
expect(atom.serialize()).toEqual([1, 'operator', 'value'])
})
- it('should emit changed on value change after debounce', fakeAsync(() => {
+ it('should emit changed on value change immediately', () => {
const atom = new CustomFieldQueryAtom()
const changeSpy = jest.spyOn(atom.changed, 'next')
atom.value = 'new value'
- tick(1000)
expect(changeSpy).toHaveBeenCalled()
- }))
+ })
+
+ it('should ignore duplicate array emissions', () => {
+ const atom = new CustomFieldQueryAtom()
+ atom.operator = CustomFieldQueryOperator.In
+ const changeSpy = jest.fn()
+ atom.changed.subscribe(changeSpy)
+
+ atom.value = [1, 2]
+ expect(changeSpy).toHaveBeenCalledTimes(1)
+
+ changeSpy.mockClear()
+ atom.value = [1, 2]
+ expect(changeSpy).not.toHaveBeenCalled()
+ })
+
+ it('should emit when array values differ while length matches', () => {
+ const atom = new CustomFieldQueryAtom()
+ atom.operator = CustomFieldQueryOperator.In
+ const changeSpy = jest.fn()
+ atom.changed.subscribe(changeSpy)
+
+ atom.value = [1, 2]
+ changeSpy.mockClear()
+ atom.value = [1, 3]
+ expect(changeSpy).toHaveBeenCalledTimes(1)
+ })
})
describe('CustomFieldQueryExpression', () => {
diff --git a/src-ui/src/app/utils/custom-field-query-element.ts b/src-ui/src/app/utils/custom-field-query-element.ts
index 3438f2c85..34891641a 100644
--- a/src-ui/src/app/utils/custom-field-query-element.ts
+++ b/src-ui/src/app/utils/custom-field-query-element.ts
@@ -1,4 +1,4 @@
-import { Subject, debounceTime, distinctUntilChanged } from 'rxjs'
+import { Subject, distinctUntilChanged } from 'rxjs'
import { v4 as uuidv4 } from 'uuid'
import {
CUSTOM_FIELD_QUERY_VALUE_TYPES_BY_OPERATOR,
@@ -110,7 +110,22 @@ export class CustomFieldQueryAtom extends CustomFieldQueryElement {
protected override connectValueModelChanged(): void {
this.valueModelChanged
- .pipe(debounceTime(1000), distinctUntilChanged())
+ .pipe(
+ distinctUntilChanged((previous, current) => {
+ if (Array.isArray(previous) && Array.isArray(current)) {
+ if (previous.length !== current.length) {
+ return false
+ }
+ for (let i = 0; i < previous.length; i++) {
+ if (previous[i] !== current[i]) {
+ return false
+ }
+ }
+ return true
+ }
+ return previous === current
+ })
+ )
.subscribe(() => {
this.changed.next(this)
})
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index 914c41663..fa3ce233b 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -6,7 +6,7 @@ export const environment = {
apiVersion: '9', // match src/paperless/settings.py
appTitle: 'Paperless-ngx',
tag: 'prod',
- version: '2.19.2',
+ version: '2.20.1',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf
index ef8a374d8..7219c5dd8 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Sluit
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Vorige
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Volgende
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Vorige maand
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Volgende maand
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Sluit
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Kies maand
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klik om te bekyk.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx kan outomaties na bywerkings soek
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Hoe werk dit?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Bywerking beskikbaar
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Fout by die bewaar van instellings vir soek na bywerkings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nou
-
From
@@ -3858,11 +3878,19 @@
Toegevoeg
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nou
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Hoofletterongevoelig
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Ken dokumenttipe toe
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Ken korrespondent toe
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Skep nuwe gebruikersrekening
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Wysig gebruikersrekening
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nie toegewys nie
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Kies alles
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Geen
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel & inhoud
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Meer soos
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
gelyk aan
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is leeg
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is nie leeg nie
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
groter as
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
kleiner as
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sonder korrespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sonder dokumenttipe
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sonder enige etiket
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Eienaar:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Eienaar nie in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Sonder ’n eienaar
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 1ec286b67..105083c0b 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
إغلاق
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
السابق
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
التالي
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
الشهر السابق
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
الشهر التالي
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
إغلاق
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
تحديد الشهر
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
انقر للعرض.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx يتحقق تلقائياً من وجود تحديثات
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
كيف يعمل هذا؟
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
يتوفر تحديث
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
تم تحديث طرق عرض الشريط الجانبي
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
خطأ في تحديث طرق عرض الشريط الجانبي
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- الآن
-
From
@@ -3858,11 +3878,19 @@
أضيف
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ الآن
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
حالة غير حساسة
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
تعيين نوع المستند
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
تعيين جهة تراسل
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
إنشاء حساب مستخدم جديد
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
تعديل حساب المستخدم
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
نوع المشغل
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
مشغل للمستندات التي تطابق جميع عوامل التصفية المحددة أدناه.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
تصفية اسم المِلَفّ
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
تطبق فقط على المستندات التي تطابق اسم هذا المِلَفّ. المحارف البديلة على سبيل المثال *.pdf أو *invoice* مسموح بها. غير حساسة لحالة الأحرف.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
تصفية المصادر
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
تصفية المسار
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
تنطبق على المستندات التي تطابق هذا المسار. يسمح باستخدام أحرف البدل المحددة كـ *. تطبيع الحالة.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
تصفية قاعدة البريد
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
تطبيق على المستندات المستهلكة عبر هذه القاعدة البريدية.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
خوارزمية مطابقة المحتوى
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
نمط مطابقة المحتوى
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
نوع الإجراء
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
تعيين العنوان
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
يمكن أن تتضمن بعض العناصر النائبة، راجع <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>التوثيق</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
تعيين وسوم
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
تعيين مسار التخزين
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
تعيين حقول مخصصة
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
تعيين مالك
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
تعيين صلاحيات العرض
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
تعيين صلاحيات التحرير
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
إزالة الوسوم
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
أزاله الكل
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
إزالة جهات التراسل
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
إزالة أنواع المستندات
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
إزالة مسارات التخزين
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
إزالة الحقول المخصصة
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
إزالة المُلًاك
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
إزالة الصلاحيات
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
عرض الصلاحيات
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
تحرير الصلاحيات
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
غير معين
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
فتح المرشح
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
تم تحديث الملف الشخصي بنجاح
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
خطأ أثناء حفظ الملف الشخصي
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
خطأ أثناء إنشاء رمز المصادقة
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
خطأ أثناء قطع الاتصال بحساب الشبكة الاجتماعية
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
حقول مخصصة
@@ -8670,6 +8730,14 @@
تحديد الكل
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
لا شيء
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- إظهار
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
العنوان & المحتوى
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
أكثر مثله
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
يساوي
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
فارغ
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
غير فارغ
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
أكبر من
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
أقل من
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
بدون مراسل
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
بدون نوع المستند
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
بدون مسار التخزين
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
بلا أي وسم
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
طلب الحقول المخصصة
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
العنوان:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
المالك:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
المالك ليس في:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
بدون مالك
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
خطأ أثناء تحديث الصلاحيات
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
تم تحديث الصلاحيات بنجاح
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
ستؤدي هذه العملية إلى حذف جميع الكائنات نهائيا.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
تمّ حذف الكائنات بنجاحٍ
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
خطأ أثناء حذف الكائنات
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index de1dd0a86..e9d65738d 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Закрыць
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Папярэдняя
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Наступная
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Папярэдні месяц
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Наступны месяц
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Закрыць
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Абраць месяц
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Націсніце, каб убачыць.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Як гэта працуе?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Даступна абнаўленне
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Адбылася памылка падчас захавання налад праверкі абнаўленняў.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Дададзена
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Без уліку рэгістра
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не прызначана
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Выбраць усё
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Назва & змест
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Больш падобных
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
супадае з
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
пусты
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
не пусты
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
большы за
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
менш за
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Без карэспандэнта
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Без тыпу дакумента
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Без усялякага тэга
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Назва:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index ef2d37a63..ec64caea0 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Затвори
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Назад
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Напред
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Предишен месец
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Следващ месец
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Затвори
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Изберете месец
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Натисни за преглед.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx може автоматично да проверява за актуализации
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Как работи това?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Налична актуализация
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Изгледите на страничната лента са актуализирани
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Грешка при актуализиране на изгледите на страничната лента
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Възникна грешка при запазване на настройките за проверка за актуализация.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Правилно
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Грешно
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Търсене в документи...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Не
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Добавете заявка
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Добавете израз
@@ -3798,18 +3830,6 @@
Относителни дати
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- сега
-
From
@@ -3858,11 +3878,19 @@
Добавен
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ сега
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
В рамките на 1 седмица
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
В рамките на 1 месец
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
В рамките на 3 месеца
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
В рамките на 1 година
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Тази година
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Този месец
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Вчера
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Без чувствителност към големината на буквите
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Задаване на тип на документ
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Задаване на кореспондент
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Създаване на нов потребителски профил
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Промяна на потребителски профил
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp е деактивиран
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Грешка при деактивиране на Totp
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Тип на тригъра
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Задайте планирано отместване на тригера и кое поле за дата да използвате.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Дата на отместване
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Спрямо
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Персонализирано поле
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Персонализирано поле за използване за дата.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Повтарящи се
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Тригерът се повтаря.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Повтарящи се интервални дни
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Повторете задействането на всеки n дни.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Тригер за съвпадащи документи all филтри, посочени по-долу.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Филтриране по файлово име
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Прилага се към документи, които отговарят на това файлово име. Позволени са заместващи символи като *.pdf или *invoice*. Нечувствителен към големи и малки букви.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Филтриране на източници
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Филтриране на път
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Прилагане към документи, които съответстват на този път. Разрешени са заместващи символи, посочени като *. Нормализирани по случай.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Правило за филтриране на поща
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Прилагане за документи, консумирани чрез това правило за поща.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Алгоритъм за съвпадение на съдържанието
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Модел за съвпадение на съдържанието
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Тип на действие
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Задаване на заглавие
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Може да включи някои контейнери, вижте <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документация</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Задаване на етикет
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Задаване нa път за съхранение
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Присвояване на персонализирани полета
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Задаване на собственик
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Задаване на права за разглеждане
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Задаване на права за промяна
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Премахни тагове
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Премахни всички
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Премахни кореспонденти
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Премахни типове документи
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Премахнете пътищата за съхранение
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Премахнете персонализираните полета
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Премахни собственици
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Премахване на права
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Права за преглед
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Редакция на права
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Имейл тема
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Имейл съобщение
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Получатели на имейл
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Прикачете документ
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Url адрес на известяване
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Избери параметри за известяване със съобщение
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Изпратете известяване като JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Известяване параметри
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Известяване съобщение
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Заглавия за известяване
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Добави документа
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не е зададен
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Отвори филтър
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Профила е актуализиран успешно
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Грешка при запазването на профила
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Грешка при генериране на auth токен
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Грешка при прекъсване на връзката със социалния акаунт
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Грешка при извличане на настройките за TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP е активиран успешно
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Грешка при активирането на TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP е деактивиран успешно
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Грешка при деактивирането на TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Възникна грешка при зареждането на tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Персонализирани полета
@@ -8670,6 +8730,14 @@
Избери всички
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Нищо
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Покажи
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Заглавие & съдържание
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Тип файл
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Още като
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
е равно на
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
е празно
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
не е празно
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
по-голямо от
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
по-малко от
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Кореспондент:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Без кореспондент
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Тип документ:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Без тип на документа
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Път за съхранение:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Без път за съхранение
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Етикет:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Без никакъв етикет
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Заявка за персонализирани полета
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Заглавие:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
Архивен номер:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Собственик:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Собственикът не е в:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Без собственик
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Грешка при актуализиране на правата
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Правата са актуализирани успешно
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Тази операция ще изтрие завинаги всички обекти.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Обектите са успешно изтрити
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Грешки при изтриване на обектите
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index 4e697795a..e81b70b29 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Tanca
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Anterior
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Següent
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mes anterior
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mes següent
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Tanca
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Seleccioneu mes
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Cliqueu per veure.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx pot cercar actualitzacions automàticament
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Com funciona?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Actualització disponible
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Vistes laterals actualitzades
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error a l'actualitzar vistes laterals
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
S'ha produït un error en desar la configuració de comprovació d'actualitzacions.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Vertader
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Fals
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Cerca docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
No
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Afegir consulta
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Afegir expressió
@@ -3798,18 +3830,6 @@
Dates relatives
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- ara
-
From
@@ -3858,11 +3878,19 @@
Afegit
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ ara
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
En 1 setmana
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
En 1 mes
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
En 3 mesos
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
En 1 any
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Aquest any
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Aquest mes
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Ahir
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Setmana anterior
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Mes anterior
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Quatrimestre Ant
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Any passat
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
No distingeix majúscules - minúscules
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assigna tipus document
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assigna corresponsal
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Crea nou compte usuari
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Editar compte usuari
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp desactivat
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Desactivació de Totp fallit
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tipus disparador
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Estableix el desplaçament de l'activador programat i quin camp de data s'utilitza.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Dies de compensació
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Els valors positius s'activaran després de la data, els valors negatius abans.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relatiu a
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Camp personalitzat
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Camp personalitzat per emprar data.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurrent
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Disparador és recurrent.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Dies d'interval recurrent
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeteix disparador cada n dies.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Disparadors per documents coincidents amb all filtres especificats a continuació.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtra nom arxiu
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Aplica als documents que coincideixen amb aquest nom de fitxer. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtra orígens
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtra ruta
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filtra regla de correu
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Aplica a documents consumits amb aquesta regla de correu.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algorisme concordança contingut
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Algorisme concordança patró
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Filtresavançats
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Afegeix filtre
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No s'han definit filtres avançats de flux de treball.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Completeu la configuració de la consulta de camp personalitzat.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tipus acció
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assigna títol
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Pot incloure marcadors, vegeu <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentació</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assigna etiquetes
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assigna ruta emmagatzematge
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assigna camps personalitzats
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assigna propietari
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assigna permisos de visionat
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assigna permisos d'edició
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Elimina etiquetes
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Eliminar tot
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Elimina corresponsals
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Elimina tipus de documents
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Elimina rutes d'emmagatzematge
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Elimina camps personalitzats
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Elimina propietaris
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Elimina permisos
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Veure permisos
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edita permisos
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Assumpte de l'Email
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Cos de l'Email
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Destinataris del mail
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Adjuntar document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Empra paràmetres pel cos del webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Enviar webhook com a JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Paràmetres del webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Cos del Webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Capçaleres del Webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Incloure documents
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
No assignat
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Obrir filtre
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Perfil actualitzat corrcetament
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error desant perfil
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generant auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error desconnectant compte social
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error obtenint les opcions TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activat correctament
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activant TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP desactivat correctament
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error desactivant TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Impressió fallida.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error carregant document per imprimir.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Error al carregar tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Camps personalitzats
@@ -8670,6 +8730,14 @@
Selecciona tot
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Selecciona:
+
None
@@ -8686,18 +8754,6 @@
Cap
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Mostra
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Títol i contingut
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Tipus de fitxer
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Més com
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
és igual a
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
està buit
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
no està buit
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
més gran que
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
més petit que
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Corresponsal:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sense corresponsal
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Tipus Document:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sense tipus de document
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Ruta Emmagazematge:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Sense ruta emmagatzematge
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Etiqueta:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sense cap etiqueta
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Consulta de camps personalitzats
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Títol:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Propietari:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Propietari no és:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Sense propietari
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error actualitzant permisos
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permisos actualitzats correctament
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Aquesta operació esborrarà tots els objectes.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objecte esborrat correctament
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error esborrant objectes
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index c7d20b7d6..8f3a8f623 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zavřít
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Předchozí
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Následující
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Předchozí měsíc
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Následující měsíc
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zavřít
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Vybrat měsíc
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klikněte pro zobrazení.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx umí automaticky kontrolovat aktualizace
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Jak to funguje?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Je dostupná aktualizace
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Pohledy postranního panelu aktualizovány
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Chyba při aktualizaci pohledů postranního panelu
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Došlo k chybě při ukládání nastavení kontroly aktualizací.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Pravda
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Nepravda
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Hledat dokumenty...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Není
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Přidat dotaz
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Přidat výraz
@@ -3798,18 +3830,6 @@
Relativní datum
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nyní
-
From
@@ -3858,11 +3878,19 @@
Přidáno
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nyní
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Během 1 týdne
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Během 1 měsíce
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Během 3 měsíců
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Během 1 roku
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Tento rok
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Tento měsíc
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Včera
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Nerozlišovat velikost písmen
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Přiřadit typ dokumentu
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Přiřadit korespondenta
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Vytvořit nový uživatelský účet
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Upravit uživatelský účet
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP deaktivováno
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Deaktivace TOTP selhala
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Typ spouštěče
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Nastavit posun naplánovaného spouštěče a použité pole data.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Posun ve dnech
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Kladné hodnoty spustí plán po vybraném datu, záporné před.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Ve vztahu k
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Vlastní pole
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Vlastní pole použité pro datum.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Opakující se
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Spouštěč se opakuje.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Interval opakování ve dnech
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Opakovat spouštěč kadých n dní.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Spouštěč pro dokumenty, které odpovídají všem níže zadaným filtrům.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtr názvu souboru
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Použít na dokumenty odpovídající tomuto názvu souboru. Zástupné symboly, jako *.pdf nebo *faktura*, jsou povoleny. Nerozlišuje velká a malá písmena.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtr zdrojů
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtr cesty
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Použít na dokumenty odpovídající této cestě. Zástupné symboly zadané jako * jsou povoleny. Velká a malá písmena jsou normalizována.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Pravidlo filtrování pošty
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Použít na dokumenty zpracované pomocí tohoto pravidla pošty.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritmus shody obsahu
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Vzor shody obsahu
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Pokročilé filtry
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Přidat filtr
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Nebyly definovány žádné pokročilé filtry pracovního postupu.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Dokončete konfiguraci dotazu na vlastní pole.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Typ akce
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Přiřadit název
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Může zahrnovat některé zástupné symboly, viz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentace</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Přiřadit štítky
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Přiřadit cestu k úložišti
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Přiřadit vlastní pole
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Přiřadit vlastníka
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Přiřadit oprávnění k zobrazení
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Přiřadit oprávnění k úpravě
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Odstranit štítky
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Odstranit vše
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Odstranit korespondenty
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Odstranit typy dokumentů
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Odstranit cesty k úložišti
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Odstranit vlastní pole
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Odstranit vlastníky
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Odstranit oprávnění
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Oprávnění k zobrazení
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Oprávnění k úpravě
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Předmět e-mailu
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Tělo e-mailu
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Příjemci e-mailu
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Přiložit dokument
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL webhooku
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Použít parametry pro tělo webhooku
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Odeslat data webhooku jako JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parametry webhooku
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Tělo webhooku
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Hlavičky webhooku
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Zahrnout dokument
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ Má některý z těchto štítků
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ Má všechny tyto štítky
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Nemá tyto štítky
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ Nemá tyto korespondenty
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ Nemá tyto typy dokumentů
Has storage path
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ Nemá tyto cesty k úložišti
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Odpovídá dotazu na vlastní pole
Create new workflow
@@ -5716,7 +5776,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural, =1 {Odeslat dokument emailem} few {Odeslat dokumenty emailem} other {Odeslat dokumentů emailem}}
Email address(es)
@@ -5768,7 +5828,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Některé e-mailové servery mohou odmítnout zprávy s velkými přílohami.
Email sent
@@ -5784,7 +5844,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Chyba při odesílání dokumentů
Error emailing document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nepřiřazeno
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Otevřít filtr
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil úspěšně aktualizován
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Chyba při ukládání profilu
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Chyba při generování ověřovacího tokenu
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Chyba při odpojování účtu sociální sítě
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Chyba při získávání nastavení TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP úspěšně aktivováno
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Chyba při aktivaci TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP úspěšně deaktivováno
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Chyba při deaktivaci TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Tisk selhal.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Chyba při načítání dokumentu pro tisk.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Došlo k chybě při načítání tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Vlastní pole
@@ -8669,6 +8729,14 @@
Vybrat vše
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Vybrat:
+
None
@@ -8685,18 +8753,6 @@
Žádný
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Zobrazit
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Název a obsah
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Typ souboru
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Podobné
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
rovná se
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
je prázdný
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
není prázdný
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
větší než
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
menší než
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Korespondent:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Bez korespondenta
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Typ dokumentu:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Bez typu dokumentu
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Cesta k úložišti:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Bez cesty k úložišti
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Štítek:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Bez štítku
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Dotaz na vlastní pole
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Název:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
SČA:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Vlastník:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Vlastník není v:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Bez vlastníka
@@ -9571,7 +9627,7 @@
src/app/components/manage/mail/mail.component.html
143
- View Processed Mail
+ Zobrazit zpracovanou poštu
No mail rules defined.
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Chyba při aktualizaci oprávnění
@@ -9775,7 +9831,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Processed Mail for
+ Zpracovaná pošta pro
No processed email messages found.
@@ -9783,7 +9839,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+ Nebyly nalezeny žádné zpracované e-mailové zprávy.
Received
@@ -9791,7 +9847,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ Přijato
Processed
@@ -9807,7 +9863,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ Zpracované zprávy byly odstraněny
Filter by:
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Oprávnění úspěšně aktualizována
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Tato operace trvale odstraní všechny objekty.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objekty úspěšně odstraněny
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Chyba při odstraňování objektů
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 96b6d9601..cef5966fd 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Luk
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Forrige
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Næste
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Forrige måned
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Næste måned
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Luk
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Vælg måned
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klik for at se.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Opdatering tilgængelig
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Tilføjet
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Skelner ikke mellem store og små bogstaver
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ikke tildelt
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Vælg alle
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel & indhold
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Mere som
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Uden korrespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Uden dokumenttype
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Uden nogen etiket
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index 7c8576499..5b138e6d9 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Schließen
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Vorherige
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Nächste
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Vorheriger Monat
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Nächster Monat
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Schließen
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Monat auswählen
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Zum Anzeigen klicken.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx kann automatisch auf Aktualisierungen überprüfen
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Wie funktioniert das?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Aktualisierung verfügbar
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Seitenleisten-Ansichten aktualisiert
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Fehler beim Aktualisieren der Seitenleisten-Ansichten
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Wahr
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falsch
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Suche Dokumente...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Nicht
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Abfrage hinzufügen
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Ausdruck hinzufügen
@@ -3798,18 +3830,6 @@
Relative Datumsangaben
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- jetzt
-
From
@@ -3858,11 +3878,19 @@
Hinzugefügt am
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ jetzt
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Innerhalb einer Woche
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Innerhalb eines Monats
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Innerhalb von 3 Monaten
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Innerhalb eines Jahres
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Aktuelles Jahr
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Aktueller Monat
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Gestern
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Vorherige Woche
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Vorheriger Monat
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Vorheriges Quartal
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Vorheriges Jahr
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Groß-/Kleinschreibung irrelevant
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Dokumenttyp zuweisen
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Korrespondent zuweisen
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Neues Benutzerkonto erstellen
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Benutzerkonto bearbeiten
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP deaktiviert
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
TOTP-Deaktivierung fehlgeschlagen
@@ -5016,7 +5076,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
31
- Workflow auslösen bei:
+ Arbeitsablauf auslösen bei:
Add Trigger
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Auslösertyp
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Legen Sie die Verzögerung des geplanten Auslösers und das zu verwendende Datumsfeld fest.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Verzögerung (Tage)
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive Werte werden nach dem Datum ausgelöst, negative Werte davor.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Bezogen auf
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Benutzerdefiniertes Feld
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Benutzerdefiniertes Feld, das als Datum verwendet wird.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Wiederkehrend
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Der Auslöser ist wiederkehrend.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Wiederkehrendes Intervall (Tage)
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Wiederholt den Auslöser alle n Tage.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Auslöser für Dokumente, die mit allen unten angegebenen Filtern übereinstimmen.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Dateinamen filtern
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Auf Dokumente anwenden, die mit diesem Dateinamen übereinstimmen. Platzhalter wie *.pdf oder *rechung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Quellen filtern
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Pfad filtern
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung normalisiert.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
E-Mail-Regel filtern
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Inhaltsabgleichsalgorithmus
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Inhaltsabgleichsmuster
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Erweiterte Filter
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Filter hinzufügen
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
Keine erweiterten Arbeitsablauf-Filter definiert.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Benutzerdefinierte Feldabfragekonfiguration abschließen.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Aktionstyp
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Titel zuweisen
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Kann einige Platzhalter enthalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>Dokumentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Tags zuweisen
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Speicherpfad zuweisen
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Benutzerdefinierte Felder zuweisen
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Eigentümer zuweisen
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Anzeigeberechtigungen zuweisen
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Bearbeitungsberechtigungen zuweisen
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Tags entfernen
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Alle entfernen
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Korrespondenten entfernen
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Dokumenttypen entfernen
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Speicherpfade entfernen
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Benutzerdefinierte Felder entfernen
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Eigentümer entfernen
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Berechtigungen entfernen
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Anzeigeberechtigungen
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Bearbeitungsberechtigungen
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
E-Mail-Betreff
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
E-Mail-Inhalt
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
E-Mail-Empfänger
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Dokument anhängen
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook-URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Parameter für Webhook-Inhalt verwenden
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Webhook-Payload als JSON senden
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook-Parameter
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook-Inhalt
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook-Kopfzeilen
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Dokument einbeziehen
@@ -5710,13 +5770,13 @@
Arbeitsablauf bearbeiten
-
+
{VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Dokument mailen} other { Dokumente mailen}}
+ {VAR_PLURAL, plural, =1 {Dokument mailen} other { Dokumente mailen}}
Email address(es)
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nicht zugewiesen
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Filter öffnen
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil erfolgreich aktualisiert
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Fehler beim Speichern des Profils
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Fehler beim Generieren des Authentifizierungstokens
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Fehler beim Trennen des Drittanbieterkontos
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Fehler beim Abrufen der TOTP-Einstellungen
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP erfolgreich aktiviert
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Fehler beim Aktivieren von TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP erfolgreich deaktiviert
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Fehler beim Deaktivieren von TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Drucken fehlgeschlagen.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Fehler beim Laden des Dokuments für den Druck.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Fehler beim Laden des TIFF:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Benutzerdefinierte Felder
@@ -8669,6 +8729,14 @@
Alles auswählen
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Auswählen:
+
None
@@ -8683,19 +8751,7 @@
src/app/data/matching-model.ts
45
- Keiner
-
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Anzeigen
+ Keine
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel & Inhalt
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Dateityp
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Ähnlich zu
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
entspricht
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
ist leer
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
ist nicht leer
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
größer als
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
kleiner als
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Korrespondent:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Ohne Korrespondent
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Dokumenttyp:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Ohne Dokumenttyp
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Speicherpfad:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Ohne Speicherpfad
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Ohne Tag
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Benutzerdefinierte Feldabfrage
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Eigentümer:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Eigentümer nicht in:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Ohne Eigentümer
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Fehler beim Aktualisieren der Berechtigungen
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Berechtigungen wurden erfolgreich aktualisiert
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Dieser Vorgang wird alle Objekte unwiderruflich löschen.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objekte erfolgreich gelöscht
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Fehler beim Löschen der Objekte
@@ -10484,7 +10540,7 @@
src/app/data/matching-model.ts
46
- Keine: Automatische Zuweisung deaktivieren
+ Keiner: Automatische Zuweisung deaktivieren
General Settings
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index ef655240d..dcd0d92cb 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Κλείσιμο
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Προηγούμενο
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Επόμενο
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Προηγούμενος μήνας
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Επόμενος μήνας
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Κλείσιμο
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Επιλογή μήνα
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Κάνε κλικ για προβολή.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Πώς λειτουργεί;
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Υπάρχει διαθέσιμη ενημέρωση
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- τώρα
-
From
@@ -3858,11 +3878,19 @@
Προστέθηκε
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ τώρα
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Χωρίς διάκριση πεζών/κεφαλαίων
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Ανάθεση τύπου εγγράφου
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Ανάθεση ανταποκριτή
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Δημιουργία νέου λογαριασμού χρήστη
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Επεξεργασία λογαριασμού χρήστη
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Δεν έχει ανατεθεί
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Επιλογή όλων
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Κανένα
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Τίτλος & περιεχόμενο
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Περισσότερα σαν
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
ίσον
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
είναι κενό
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
δεν είναι κενό
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
μεγαλύτερο από
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
μικρότερο από
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Χωρίς ανταποκριτή
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Χωρίς τύπο εγγράφου
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Χωρίς διαδρομή αποθήκευσης
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Χωρίς καμία ετικέτα
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Τίτλος:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Ιδιοκτήτης:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Ιδιοκτήτης όχι σε:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Χωρίς ιδιοκτήτη
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 6dea592a9..490cb28c3 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Cerrar
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Anterior
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Siguiente
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mes anterior
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mes siguiente
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Cerrar
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Seleccionar mes
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Haz clic para ver.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx puede comprobar automáticamente si hay actualizaciones
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
¿Cómo funciona?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Actualización disponible
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Vistas de la barra lateral actualizadas
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error al actualizar las vistas de la barra lateral
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Se produjo un error al guardar la configuración de comprobación de actualizaciones.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Verdadero
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falso
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Buscar documentos...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
No
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Añadir consulta
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Añadir expresión
@@ -3798,18 +3830,6 @@
Fechas relativas
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- ahora
-
From
@@ -3858,11 +3878,19 @@
Agregado
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ ahora
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
En 1 semana
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
En 1 mes
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
En 3 meses
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
En 1 año
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Este año
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Este mes
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Ayer
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Insensible a mayúsculas y minusculas
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Asignar tipo de documento
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Asignar interlocutor
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Crear nuevo usuario
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Editar cuenta de usuario
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp desactivado
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Falló la desactivación del Totp
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tipo de activador
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Establezca el desplazamiento programado del disparador y el campo de fecha a utilizar.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Desplazamiento días
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relativo a
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizado
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizado a utilizar para la fecha.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurrente
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
El disparador es recurrente.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Días del intervalo recurrente
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repita el disparador cada n días.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Activador para documentos que coincidan con todos los filtros especificados a continuación.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtrar nombre del archivo
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Aplicar a documentos que coincidan con este nombre de archivo. Comodines como *.pdf o *factura* están permitidos. No distingue mayúsculas.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtrar fuentes
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtrar ruta
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filtrar regla de correo
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Aplicar a los documentos consumidos mediante esta regla de correo.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritmo de coincidencia de contenido
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Patrón de coincidencia de contenido
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tipo de acción
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Asignar título
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Puede incluir algunos marcadores de posición, vea <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Asignar etiquetas
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Asignar ruta de almacenamiento
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Asignar campos personalizados
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Asignar dueño
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Asignar permisos de vista
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Asignar permisos de edición
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Eliminar etiquetas
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Eliminar todo
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Eliminar interlocutores
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Eliminar tipos de documentos
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Eliminar rutas de almacenamiento
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Eliminar campos personalizados
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Eliminar propietarios
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Eliminar permisos
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Ver permisos
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Editar permisos
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Asunto del correo electrónico
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Cuerpo del correo electrónico
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Destinatarios de correo
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Adjuntar un documento
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL del webhook
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Usar parámetros para el cuerpo del webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Enviar payload del webhook como JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parámetros del webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Cuerpo del webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Encabezados del Webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Incluir documento
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Sin asignar
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Abrir filtro
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6218,7 +6278,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Eliminar página
Add / remove document split here
@@ -6234,7 +6294,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ Dividir aquí
Create new document(s)
@@ -6258,7 +6318,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ Copiar metadatos
Delete original
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Perfil actualizado correctamente
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error al guardar el perfil
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generando token de autenticación
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error al desconectar la cuenta de red social
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error obteniendo ajustes TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activado correctamente
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activando TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP desactivado correctamente
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error desactivando TOTP
@@ -7444,7 +7504,7 @@
src/app/components/document-detail/document-detail.component.ts
1392
- PDF Editor
+ Editor de PDF
Send
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8000,13 +8060,13 @@
src/app/components/document-detail/document-detail.component.ts
1423
- Error executing PDF edit operation
+ Error al ejecutar la operación de edición PDF
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Se ha producido un error al cargar el tif:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Campos personalizados
@@ -8670,6 +8730,14 @@
Seleccionar todo
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Ninguno
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Mostrar
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titulo y contenido
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Tipo archivo
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Más parecido
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
es igual a
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
está vacío
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
no está vacío
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
es mayor que
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
es menor que
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sin interlocutor
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sin tipo de documento
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Sin ruta de almacenamiento
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sin ninguna etiqueta
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Consulta de campos personalizados
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Título:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
NSA:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Propietario:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Propietario no en:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Sin un propietario
@@ -9316,7 +9372,7 @@
src/app/components/file-drop/file-drop.component.ts
142
- Failed to read dropped items:
+ Error al leer elementos soltados:
correspondent
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error al actualizar permisos
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permisos correctamente actualizados
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Esta operación eliminará todos los objetos permanentemente.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objetos eliminados con éxito
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error al eliminar objetos
@@ -10661,7 +10717,7 @@
src/app/data/paperless-config.ts
214
- Enable ASN
+ Habilitar ASN
ASN Prefix
@@ -10669,7 +10725,7 @@
src/app/data/paperless-config.ts
221
- ASN Prefix
+ Prefijo ASN
Upscale
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index 3f90c3e69..0e053fd08 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Close
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Previous
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Next
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Previous month
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Next month
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Close
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Select month
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Click to view.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Update available
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Added
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Case insensitive
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Select all
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Without any tag
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index 7cb589bb8..16dcdb5f9 100644
--- a/src-ui/src/locale/messages.fa_IR.xlf
+++ b/src-ui/src/locale/messages.fa_IR.xlf
@@ -5,7 +5,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
نزدیک
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
قبلی
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
طرف دیگر
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
ماه قبل
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
ماه بعد
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
نزدیک
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
ماه را انتخاب کنید
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
برای مشاهده کلیک کنید
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-NGX به طور خودکار می تواند به روزرسانی ها را بررسی کند
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
این چگونه کار می کند؟
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
به روز رسانی موجود است
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
نمای نوار کناری به روز شده است
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
خطا به روزرسانی نماهای نوار کناری
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
درست
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
دروغ
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
اسناد جستجو ...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
نه
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
اضافه کردن پرس و جو
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
بیان را اضافه کنید
@@ -3798,18 +3830,6 @@
خرمای نسبی
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- در حال حاضر
-
From
@@ -3858,11 +3878,19 @@
اضافه شده
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ در حال حاضر
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
ظرف 1 هفته
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
طی 1 ماه
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
ظرف 3 ماه
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
ظرف 1 سال
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
امسال
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
این ماه
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
دیروز
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
غیر حساس
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
نوع سند را اختصاص دهید
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
خبرنگار را اختصاص دهید
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
حساب کاربری جدید ایجاد کنید
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
ویرایش حساب کاربری
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP غیرفعال
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
غیرفعال کردن TOTP انجام نشد
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
نوع ماشه
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
تنظیم برنامه ریزی شده را جبران کنید و از کدام قسمت تاریخ استفاده کنید.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
روزهای جبران
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
نسبت به
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
قسمت سفارشی
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
قسمت سفارشی برای استفاده برای تاریخ.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
عود
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
ماشه در حال تکرار است.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
روزهای مکرر
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
ماشه را هر n روز تکرار کنید.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
نام پرونده فیلتر
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
به اسنادی که مطابق با این نام پرونده هستند ، مراجعه کنید. کارتهای وحشی مانند *.pdf یا *فاکتور *مجاز است. مورد غیر حساس
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
منابع فیلتر
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
مسیر فیلتر
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
قانون نامه نامه فیلتر
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
به اسناد مصرفی از طریق این قانون نامه استفاده کنید.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
الگوریتم تطبیق محتوا
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
الگوی تطبیق محتوا
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
نوع عمل
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
عنوان اختصاص دادن
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
اختصاص برچسب ها
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
مسیر ذخیره سازی را اختصاص دهید
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
اختصاص زمینه های سفارشی
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
مالک
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
مجوزهای مشاهده را اختصاص دهید
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
مجوزهای ویرایش را اختصاص دهید
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
حذف برچسب ها
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
حذف همه
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
خبرنگاران را حذف کنید
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
حذف انواع سند
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
مسیرهای ذخیره سازی را حذف کنید
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
زمینه های سفارشی را حذف کنید
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
صاحبان را حذف کنید
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
مجوزها را حذف کنید
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
مشاهده مجوزها
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
مجوزها را ویرایش کنید
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
موضوع ایمیل
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
بدنه ایمیل
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
دریافت کنندگان ایمیل
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
سند پیوست
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL Webhook
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
از پارامترهایی برای بدنه Webhook استفاده کنید
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
ارسال Webhook Payload به عنوان JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
پارامترهای وب
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
بدنه وب
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
هدرهای Webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
شامل سند
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
اختصاص داده نشده است
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
پروفایل با موفقیت به روز شد
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
نمایه ذخیره خطا
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
خطای ایجاد کننده AUTH
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
قطع خطا حساب اجتماعی
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
خطا در تنظیمات TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP با موفقیت فعال شد
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
خطا در فعال کردن TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP با موفقیت غیرفعال شد
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
خطای غیرفعال کردن TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
زمینه های سفارشی
@@ -8670,6 +8730,14 @@
همه را انتخاب کنید
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
هیچ کدام
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- نشان دادن
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
نوع پرونده
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
بیشتر شبیه
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
برابر است
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
خالی است
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
خالی نیست
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
بزرگتر از
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
کمتر از
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
بدون خبرنگار
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
بدون نوع سند
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
بدون مسیر ذخیره سازی
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
بدون هیچ برچسب
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
پرس و جو زمینه های سفارشی
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
بدون مالک
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
خطای به روزرسانی مجوزها
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
مجوزها با موفقیت به روز شد
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
این عمل به طور دائم تمام اشیاء را حذف می کند.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
اشیاء با موفقیت حذف شدند
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
خطای حذف اشیاء
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 523cad704..9fbe4cb35 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Sulje
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Edellinen
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Seuraava
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Edellinen kuukausi
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Seuraava kuukausi
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Sulje
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Valitse kuukausi
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Näytä klikkaamalla.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx voi tarkistaa päivitykset automaattisesti
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Kuinka tämä toimii?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Päivitys saatavilla
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Virhe tallennettaessa päivitystarkistuksen asetuksia
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nyt
-
From
@@ -3858,11 +3878,19 @@
Lisätty
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nyt
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Eilen
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Kirjainkoko ei vaikuta
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Määritä asiakirjatyyppi
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Määritä yhteyshenkilö
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Luo uusi käyttäjätili
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Muokkaa käyttäjätiliä
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Mukautettu kenttä
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Suodata tiedostonimi
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Suodata lähteet
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Suodata polku
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Suodata sähköpostisääntö
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Määritä omistaja
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Määritä katseluoikeudet
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Määritä muokkausoikeudet
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Poista tunnisteet
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Poista kaikki
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Poista mukautetut kentät
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Poista omistajat
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Poista oikeudet
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Näytä oikeudet
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Muokkaa oikeuksia
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ei määritetty
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profiili päivitetty onnistuneesti
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Virhe profiilia tallentaessa
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Virhe yhteyttä sosiaaliseen tiliin katkaistaessa
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Mukautetut kentät
@@ -8670,6 +8730,14 @@
Valitse kaikki
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Ei mitään
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Näytä
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Otsikko & sisältö
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Tiedostotyyppi
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Enemmän kuin
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
on yhtä kuin
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
on tyhjä
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
ei ole tyhjä
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
suurempi kuin
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
pienempi kuin
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Ilman kirjeenvaihtajaa
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Ilman asiakirjatyyppiä
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Ilman tunnistetta
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Otsikko:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Omistaja:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Virhe käyttöoikeuksia päivittäessä
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Käyttöoikeudet päivitettiin onnistuneesti
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 612b8f297..824b925ac 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Fermer
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Précédent
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Suivant
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mois précédent
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mois suivant
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Fermer
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Sélectionner le mois
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Cliquer pour visualiser.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Comment ça fonctionne ?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Mise à jour disponible
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Vues sur la barre latérale mises à jour
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Erreur lors de la mise à jour des vues de la barre latérale
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Vrai
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Faux
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Rechercher un document...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Non
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Ajouter une requête
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Ajouter une expression
@@ -3798,18 +3830,6 @@
Dates relatives
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- maintenant
-
From
@@ -3858,11 +3878,19 @@
Date d'ajout
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ maintenant
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Dans un délai de 1 semaine
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Dans un délai de 1 mois
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Dans un délai de 3 mois
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Dans un délai de 1 an
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Cette année
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Ce mois-ci
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Hier
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Insensible à la casse
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Affectation du type de document
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Affecter le correspondant
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Créer un nouveau compte utilisateur
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Modifier le compte utilisateur
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP désactivé
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
La désactivation du TOTP a échoué
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Type de déclenchement
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Définissez le décalage du déclencheur planifié et le champ de date à utiliser.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Décalage en jours
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Les valeurs positives se déclencheront après la date et les valeurs négatives avant.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relatif à
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Champ personnalisé
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Champ personnalisé à utiliser pour la date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Récurrent
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Le déclencheur est récurrent.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Intervalle récurrent en jours
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Répétez le déclencheur tous les n jours.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Déclenche pour les documents qui correspondent à tousles filtres spécifiés ci-dessous.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtrer le nom de fichier
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Appliquer aux documents qui correspondent à ce nom de fichier. Les expressions telles que *.pdf ou *facture* sont autorisées. Insensible à la casse.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtrer les sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtrer le chemin
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Normalisation de la casse.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Règle de filtrage des messages
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Appliquer aux documents traités par cette règle de courrier.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algorithme de correspondance de contenu
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Modèle de correspondance au contenu
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Filtres avancés
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Ajouter un filtre
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Aucun filtre de workflow avancé défini.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Complétez la configuration de requête de champ personnalisée.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Type d'action
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Attribuer un titre
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Peut inclure certains caractères génériques, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assigner des étiquettes
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Attribuer un chemin de stockage
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Affecter des champs personnalisés
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Affecter un propriétaire
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Affecter des autorisations de consultation
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assigner des autorisations d'édition
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Supprimer des étiquettes
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Tout supprimer
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Supprimer des correspondants
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Supprimer des types de document
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Supprimer des chemins de stockage
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Supprimer des champs personnalisés
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Supprimer des propriétaires
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Supprimer des autorisations
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Autorisations de consultation
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Autorisations de modification
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Objet du courriel
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Corps du courriel
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Destinatires du courriel
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Joindre un document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL du Webhook
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Utiliser les paramètres pour le corps du webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Envoyer le payload au format JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Paramètres du webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Corps du Webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
En-têtes Webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Inclure le document
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ A l'un de ces tags
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ A tous ces tags
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Ne possède pas ces tags
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ N'a pas de correspondant
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ N'a pas de type de document
Has storage path
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ N'a pas de chemins de stockage
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Correspond à la requête de champ personnalisé
Create new workflow
@@ -5716,7 +5776,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural,=1 {Envoyer le document} other {Envoyer les documents}}
Email address(es)
@@ -5768,7 +5828,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Certains serveurs de messagerie peuvent rejeter les messages comportant de grandes pièces jointes.
Email sent
@@ -5784,7 +5844,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Erreur lors de l'envoi des documents
Error emailing document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Non affecté
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Ouvrir le filtre
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil mis à jour avec succès
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Erreur lors de l'enregistrement du profil
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Erreur lors de la génération du jeton d'authentification
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Erreur lors de la déconnexion du compte social
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Erreur lors de la récupération des paramètres du TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activé avec succès
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Erreur lors de l’activation du TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP désactivé avec succès
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Erreur lors de la désactivation du TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Impression échouée.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Erreur lors du chargement du document pour impression.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Une erreur s’est produite lors du chargement du tiff :
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Champs personnalisés
@@ -8669,6 +8729,14 @@
Sélectionner tout
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Sélectionner :
+
None
@@ -8685,18 +8753,6 @@
Aucun
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Afficher
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titre & contenu
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Type de fichier
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Plus comme
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
est égal à
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
est vide
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
n'est pas vide
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
est supérieur à
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
est inférieur à
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondant :
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sans correspondant
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Type de document :
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sans type de document
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Chemin de stockage :
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Sans chemin de stockage
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Étiquette :
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sans étiquette
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Champs personnalisés de requête
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titre :
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
NSA :
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Propriétaire :
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Propriétaire non présent dans :
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Sans propriétaire
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Erreur lors de la mise à jour des droits d'accès
@@ -9783,7 +9839,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+
Received
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Les droits d'accès ont bien été mis à jour
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Cette opération supprimera définitivement tous les objets.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects supprimés avec succès
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Erreur lors de la suppression des objets
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 3b5a9a2ce..e49585147 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
סגור
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
הקודם
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
הבא
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
חודש קודם
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
חודש הבא
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
שש
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
סגירה
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
בחירת חודש
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
לחץ להצגה.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
איך זה עובד?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
קיים עדכון
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
תצוגת סרגל צד עודכנה
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
שגיאה בעדכון תצוגת סרגל צד
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
ארעה שגיאה בתהליך השמירה. בודק הגדרות
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
אמת
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
שקר
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
חפש מסמכים...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
לא
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
הוסף שאילתה
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
הוסף ביטוי
@@ -3798,18 +3830,6 @@
תאריכים יחסיים
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- עכשיו
-
From
@@ -3858,11 +3878,19 @@
נוסף
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ עכשיו
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
בתוך שבוע אחד
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
בתוך חודש אחד
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
בתוך שלושה חודשים
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
בתוך שנה אחת
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
השנה הזאת
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
החודש הזה
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
אתמול
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
חסר רגישות תווים גדולים/קטנים (אנגלית)
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
שייך סוג מסמך
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
שייך מכותב זה
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
צור חשבון חדש
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
ערוך את החשבון
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp בוטל
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
השבתת Totp נכשלה
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
סוג טריגר
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
הגדרת היסט טריגר מתוזמן ואיזה שדה תאריך להשתמש בו.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
ימי היסט
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
ערכים חיוביים יפעילו את תהליך העבודה לפני התאריך, וערכים שליליים אחריו.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
ביחס ל
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
שדה מותאם אישית
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
שדה מותאם אישית לשימוש כתאריך.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
מחזורי
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
הטריגר חוזר על עצמו.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
מחזור ימי מרווח
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
חזור על הטריגר כל n ימים.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
טריגר למסמכים התואמים את כל המסננים המפורטים מטה.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
סנן לפי שם קובץ
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
חל על מסמכים התואמים את שם קובץ זה. תווים כלליים כגון *.pdf או *invoice* מותרים. לא רגיש רישיות.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
מקורות מסננים
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
מסנן לפי נתיב שמירה
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
חל על מסמכים התואמים את נתיב זה. תווים כלליים המצוינים כ-* מותרים. רישיות מנורמלת.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
סנן לפי כלל דואל
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
חל על מסמכים שנצרכו דרך כלל דואר זה.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
אלגוריתם התאמת תוכן
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
תבנית התאמת תוכן
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
סוג פעולה
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
הקצה כותרת
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
יכול לכלול כמה placeholders, ראה <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>תיעוד</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
הקצה תגיות
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
הקצה נתיב אחסון
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
הקצה שדות מותאמים אישית
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
הקצה בעלים
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
הקצה הרשאות צפיה למשתמש
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
הקצה הרשאות עריכה למשתמש
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
הסירו תגיות
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
הסר הכל
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
הסר מכותבים
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
הסר סוגי מסמכים
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
הסר מיקום אכסון
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
הסרת שדות מותאמים אישית
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
הסר בעלים
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
הסר הרשאות
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
צפה בהרשאות
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
ערוך הרשאות
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
נושא הדוא"ל
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
גוף אימייל
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
נמעני אימייל
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
צרף קובץ
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
כתובת ווב-הוק
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
שימוש בפרמטרים עבור גוף הווב-הוק
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
שליחת מטען ייעודי של ווב-הוק כ-JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
פרמטרים של הווב-הוק
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
גוף הווב-הוק
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
כותרות הווב-הוק
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
כלול מסמך
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
לא הוקצה
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
פתחו מסנן
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
פרופיל עודכן בהצלחה
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
שגיאה בשמירת פרופיל
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
שגיאה ביצירת אסימון אימות
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
שגיאה בניתוק חשבון חברתי
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
שגיאה באחזור הגדרות TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP הופעל בהצלחה
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
שגיאה בהפעלת TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP הושבת בהצלחה
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
שגיאה בהשבתת TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
הדפסה נכשלה.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
שגיאה בעת טעינת קובץ tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
שדות מותאמים אישית
@@ -8670,6 +8730,14 @@
בחר הכל
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
ללא
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- הצג
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
כותרת & תוכן
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
סוג קובץ
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
עוד כמו
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
שווה
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
הינו ריק
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
אינו ריק
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
גדול מ
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
קטן מ
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
שולח:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
ללא מכותבים
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
סוג מסמך:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
ללא סוג מסמך
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
ללא נתיב אחסון
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
ללא תיוג
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
שאילתת שדות מותאמים אישית
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
כותרת:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
מס"ד:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
בעלים:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
הבעלים לא נכלל בתוך:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
ללא בעלים
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
שגיאת שינוי הרשאות
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
ההרשאות עודכנו בהצלחה
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
פעולה זו תמחק לצמיתות את כל האובייקטים.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
הפריטים נמחקו בהצלחה
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
שגיאה במחיקת פריטים
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 7b4b9f160..590ca22ae 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zatvori
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Prethodno
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Sljedeće
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Prethodni mjesec
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Sljedeći mjesec
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zatvori
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Odaberi mjesec
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klikni za prikaz.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx može automatski provjeriti aktualizaciju
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Kako ovo radi?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Dostupno ažuriranje
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Došlo je do pogreške prilikom spremanja postavki ažuriranja.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- sada
-
From
@@ -3858,11 +3878,19 @@
Added
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ sada
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Neosjetljivo na velika i mala slova
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nije dodijeljen
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Select all
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Ništa
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Without any tag
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index d97fa576d..7e6ebbeab 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Bezár
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Előző
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Következő
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Előző hónap
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
A következő hónapban
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Bezár
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Válassza ki a hónapot
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Kattintson a megtekintéshez.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Hogyan működik ez?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Frissítés elérhető
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Oldalsáv nézetek frissítve
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Hiba az oldalsáv nézetek frissítésében
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Hiba történt a frissítési ellenőrzési beállítások mentése közben.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Igaz
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Hamis
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Keresés a doksiban...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Nem
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Lekérdezés hozzáadása
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Kifejezés hozzáadása
@@ -3798,18 +3830,6 @@
Relatív dátumok
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- most
-
From
@@ -3858,11 +3878,19 @@
Hozzáadva
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ most
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Egy héten belül
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Egy hónapon belül
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Három hónapon belül
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Egy éven belül
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Idén
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Ebben a hónapban
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Tegnap
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Nagy- és kisbetű érzéketlen
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Dokumentumtípus hozzárendelése
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Levelező kijelölése
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Új felhasználói fiók létrehozása
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Felhasználói fiók szerkesztése
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp letiltva
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp letiltási hiba
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Aktiválás típusa
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Aktiválási eltolás és a használt dátum mező beállítása.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Eltolás ennyi nappal
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Pozitív értékek a dátum után, negatív értékek a dátum előtt fognak aktiválódni.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Ehhez képest
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Egyéni mező
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
A dátumhoz használt egyéni mező.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Ismétlődő
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Az aktiválás ismétlődik.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ismétlődés intervalluma napokban
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ismételje meg az aktiválást n naponta.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Azon dokumentumoknál aktiválódjon, amelyekre az alábbi szűrők mindegyike igaz.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Szűrő fájlnév
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
A fájlnévnek megfelelő dokumentumokra alkalmazza. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Szűrőforrások
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Szűrési útvonal
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Alkalmazza az erre az elérési útvonalra vonatkozó dokumentumokra. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűkre nem érzékeny.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Mail szabály szűrő
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Alkalmazza az ezen a levelezési szabályon keresztül feldolgozott dokumentumokra.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Tartalom mintázati algoritmus
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Tartalom mintázata
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tevékenység típusa
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Cím hozzárendelése
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Tartalmazhat dinamikus mezőket, lásd <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>a dokumentációban</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Címkék hozzárendelése
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Tárolási útvonal hozzárendelése
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Egyedi mezők hozzárendelése
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Tulajdonos kijelölése
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Nézetjogosultságok hozzárendelése
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Szerkesztési engedélyek hozzárendelése
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Címkék eltávolítása
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Összes eltávolítása
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Levelezőpartner eltávolítása
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Dokumentumtípus eltávolítása
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Tárolási útvonal eltávolítása
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Egyéni mezők eltávolítása
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Tulajdonosok eltávolítása
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Jogosultságok eltávolítása
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Jogosultságok megjelenítése
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Jogosultságok szerkesztése
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
E-mail tárgya
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
E-mail szövege
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email címzettek
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Dokumentum csatolása
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Paraméterek használata a webhook törzsében
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Webhook tartalom küldése JSON-ként
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook paraméterek
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook törzse
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook fejlécei
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Dokumentum melléklése
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nincs hozzárendelve
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
filter megnyitása
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil frissítése sikeresen megtörtént
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Hiba a profil mentésekor
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Hiba az auth token létrehozásakor
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Hiba a közösségi fiók szétkapcsolásakor
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Hiba a TOTP beállítások lekérésekor
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP aktiválása sikeres
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Sikertelen TOTP aktiválás
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deaktiválása sikeres
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Sikertelen TOTP deaktiválás
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Hiba tiff betöltésekor:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Egyéni mezők
@@ -8670,6 +8730,14 @@
Összes kiválasztása
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Nincs
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Mutat
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Cím & tartalom
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Fájltípus
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Bővebben
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
egyenlő
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
üres
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
nem üres
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
nagyobb, mint
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
kevesebb, mint
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Levelezőpartner:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Kapcsolattartó nélkül
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Dokumentumtípus:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Dokumentumtípus nélkül
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Tárolási útvonal:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Tárolási útvonal nélkül
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Címke:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Címke nélkül
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Egyéni mező lekérdezés
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Cím:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Tulajdonos:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
A tulajdonos nincs:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Tulajdonos nélkül
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Hiba az engedélyek frissítésében
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Az engedélyek sikeresen frissültek
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Ez a művelet véglegesen törli az összes objektumot.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objektumok sikeresen törölve
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Hiba az objektumok törlésekor
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index 8d4a6e53c..f6201c3cc 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Tutup
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Sebelumnya
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Selanjutnya
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Bulan sebelumnya
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Bulan depan
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Tutup
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Pilih bulan
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Ketuk untuk melihat.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx dapat secara otomatis memeriksa pembaruan
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Bagaimana ini dapat bekerja?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Pembaruan tersedia
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Tampilan bilah samping telah diperbarui
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Kesalahan saat memperbarui tampilan sisi
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Benar
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Salah
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Cari dokumen...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Tidak
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Tambah permintaan
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Tambah ekspresi
@@ -3798,18 +3830,6 @@
Tanggal relatif
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- sekarang
-
From
@@ -3858,11 +3878,19 @@
Ditambahkan
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ sekarang
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Dalam 1 minggu
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Dalam 1 bulan
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Dalam 3 bulan
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Dalam 1 tahun
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Tahun ini
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Bulan ini
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Kemarin
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Tidak membedakan huruf besar kecil
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Tetapkan jenis dokumen
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Tetapkan koresponden
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Buat akun pengguna baru
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Ubah akun pengguna
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp dinonaktifkan
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Gagal menonaktifkan Totp
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Jenis pemicu
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Atur jeda pemicu terjadwal dan kolom tanggal yang digunakan.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Hari jeda
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Nilai positif akan memicu setelah tanggalnya, nilai negatif sebelum tanggalnya.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relatif terhadap
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Bidang khusus
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Bidang khusus yang digunakan untuk tanggal.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Berulang
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Pemicu berulang.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Hari interval berulang
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ulangi pemicu setiap n hari.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Aktifkan untuk dokumen yang cocok semua penyaring ditentukan di bawah.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter nama berkas
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Terapkan pada dokumen yang sepenuhnya cocok dengan nama berkas ini. Karakter pengganti seperti *.pdf atau *faktur* diperbolehkan. Abaikan huruf besar/kecil.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sumber
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter lokasi
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Terapkan pada dokumen yang sepenuhnya cocok dengan lokasi ini. Karakter pengganti seperti * diperbolehkan. Huruf dinormalisasi.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter aturan surel
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Terapkan pada dokumen yang di consume lewat aturan surat ini.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Konten yang sesuai algoritma
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Konten sesuai pola
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Filter Lanjutan
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Tambah Filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Lengkapi konfigurasi kueri bidang khusus
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Jenis aksi
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Tetapkan judul
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Bisa memasukkan beberapa placeholder, lihat <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentasi</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Tetapkan label
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Tetapkan lokasi penyimpanan
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Menetapkan variasi kolom
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Tetapkan pemilik
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Tetapkan izin tampilan
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Tetapkan izin edit
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Hapus label
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Hapus semua
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Hapus koresponden
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Hapus jenis dokumen
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Hapus lokasi penyimpanan
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Hapus kolom khusus
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Hapus pemilik
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Hapus izin
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Lihat izin
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Sunting izin
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Subjek email
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Isi email
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Penerima email
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Lampirkan dokumen
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Url webhook
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Gunakan parameter untuk isi webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Kirim payload webhook sebagai JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parameter webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Isi webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Header webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Sertakan dokumen
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Tidak ditugaskan
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Buka saring
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil berhasil diperbarui
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Kesalahan saat menyimpan profil
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Kesalahan saat membuat token autentikasi
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Kesalahan saat melepaskan akun sosial
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Gagal mengambil pengaturan TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP berhasil diaktifkan
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Gagal mengaktifkan TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP berhasil dinonaktifkan
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Gagal menonaktifkan TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Pencetakan gagal.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error memuat dokumen untuk dicetak.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Terjadi kesalahan saat memuat tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Bidang khusus
@@ -8669,6 +8729,14 @@
Pilih semua
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8685,18 +8753,6 @@
Tidak ada
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Tampilkan
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
kosong
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
tidak kosong
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
lebih besar dari
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
kurang dari
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Tanpa koresponden
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Tanpa tipe dokumen
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Tanpa lokasi penyimpanan
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Tanpa label apapun
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Tanpa pemilik
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index e5f831fe9..122b84fd1 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Chiudi
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Precedente
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Successivo
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mese precedente
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Il prossimo mese
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Chiudi
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Seleziona il mese
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Clicca per visualizzare.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx può controllare automaticamente la presenza di aggiornamenti
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Come funziona?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Aggiornamento disponibile
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Viste barra laterale aggiornate
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Errore nell'aggiornamento delle viste della barra laterale
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Vero
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falso
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Ricerca di documenti...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Non
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Aggiungi query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Aggiungi espressione
@@ -3798,18 +3830,6 @@
Date relative
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- adesso
-
From
@@ -3858,11 +3878,19 @@
Aggiunto
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ adesso
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Entro una settimana
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Entro 1 mese
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Entro 3 mesi
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Entro 1 anno
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Quest'anno
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Questo mese
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Ieri
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Senza distinzione tra maiuscole e minuscole
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assegna tipo di documento
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assegna corrispondente
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4792,7 +4852,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Parent
+ Parent
Inbox tag
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Crea nuovo account utente
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Modifica account utente
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP disattivato
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Disattivazione del TOTP fallita
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tipo di trigger
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Imposta un offset di attivazione programmato e quale campo data usare.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset in giorni
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Valori positivi si attiveranno dopo la data, i valori negativi prima.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relativo a
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizzato
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizzato da usare per la data.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Ricorrente
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Il trigger si ripete.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Intervallo di ripetizione in giorni
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ripeti il trigger ogni n giorni.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Attiva per i documenti che corrispondono a tutti filtri specificati di seguito.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtra nome file
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Ignora maiuscole e minuscole.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtra sorgenti
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtro percorso
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Applica ai documenti che corrispondono a questo percorso. I caratteri jolly specificati come * sono consentiti. Case-normalizzato.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Regola e-mail
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Applica ai documenti elaborati attraverso questa regola di posta.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritmo di corrispondenza contenuti
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Modello di corrispondenza contenuti
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Filtri Avanzati
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Aggiungi filtro
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Nessun filtro avanzato del workflow definito.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Completa la configurazione della query di campo personalizzato.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tipo di Azione
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assegna titolo
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Può includere alcuni segnaposto, vedere <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assegna tag
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assegna percorso di archiviazione
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assegna campi personalizzati
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assegna proprietario
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assegna permessi di visualizzazione
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assegna permessi di modifica
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Rimuovi tag
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Rimuovi tutto
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Rimuovi corrispondenti
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Rimuovi tipi di documento
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Rimuovi percorsi di archiviazione
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Rimuovi campi personalizzati
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Rimuovi proprietari
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Rimuovi permessi
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Visualizza permessi
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Modifica permessi
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Oggetto email
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Corpo e-mail
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Destinatari email
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Allega documento
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Usa parametri per il corpo del webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Invia il payload del webhook come JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parametri Webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Corpo Webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Header Webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Includi documento
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ Ha qualcuna di queste etichette
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ Ha tutte queste etichette
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Non ha queste etichette
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ Non ha corrispondenti
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ Non ha questi tipi di documento
Has storage path
@@ -5676,7 +5736,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Has storage path
+ Ha percorso di archiviazione
Does not have storage paths
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ Non ha percorso di archiviazione
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Corrisponde a campo personalizzato
Create new workflow
@@ -5768,7 +5828,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Alcuni server di posta elettronica possono rifiutare messaggi con allegati di grandi dimensioni.
Email sent
@@ -5784,7 +5844,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Errore durante l'invio dei documenti
Error emailing document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Non assegnato
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Apri filtro
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profilo aggiornato con successo
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Errore durante il salvataggio del profilo
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Errore nella generazione del token di autenticazione
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Errore disconnessione account social
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Errore nel recupero delle impostazioni TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP attivato con successo
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Errore nell'attivazione del TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP disattivato con successo
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Errore nella disattivazione del TOTP
@@ -7038,7 +7098,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- OK
+ Ok
Copy Raw Error
@@ -7420,7 +7480,7 @@
src/app/components/document-detail/document-detail.component.html
58
- Print
+ Stampa
More like this
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,27 +8066,27 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
- Print failed.
+ Stampa non riuscita.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
- Error loading document for printing.
+ Errore nel caricamento del documento per la stampa.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Errore durante il caricamento della TIFF:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Campi personalizzati
@@ -8669,6 +8729,14 @@
Seleziona tutti
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Seleziona:
+
None
@@ -8685,18 +8753,6 @@
Niente
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Mostra
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titolo & contenuto
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Tipo di file
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Più come
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
uguale a
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
è vuoto
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
non è vuoto
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
maggiore di
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
minore di
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Corrispondente:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Senza corrispondente
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Tipo di documento:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Senza tipo di documento
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Percorso di archiviazione:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Senza percorso di archiviazione
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Etichetta:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Senza alcun tag
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Query campi personalizzati
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titolo:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Proprietario:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Proprietario non in:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Senza proprietario
@@ -9571,7 +9627,7 @@
src/app/components/manage/mail/mail.component.html
143
- View Processed Mail
+ Visualizza Email Elaborata
No mail rules defined.
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Errore durante l'aggiornamento dei permnessi
@@ -9783,7 +9839,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+ Nessun messaggio email elaborato trovato.
Received
@@ -9791,7 +9847,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ Ricevuto
Processed
@@ -9799,7 +9855,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Processed
+ Elaborato
Processed mail(s) deleted
@@ -9807,7 +9863,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ Email processate cancellate
Filter by:
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permessi aggiornati
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Questa operazione eliminerà permanentemente tutti gli oggetti.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Oggetti eliminati con successo
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Errore nell'eliminazione degli oggetti
@@ -10379,7 +10435,7 @@
src/app/data/custom-field.ts
55
- Long Text
+ Testo Lungo
Search score
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index 7acdaef6c..409802fdc 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
閉じる
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
前へ
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
次へ
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
前月
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
翌月
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
閉じる
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
月を選択
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
クリックして表示
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngxは自動的にアップデートを確認できます
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
アップデートの自動確認機能について
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
アップデートがあります。
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
サイドバービューを更新しました
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
サイドバービューの更新に失敗しました
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
アップデートの確認設定の保存中にエラーが発生しました
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
ドキュメントを検索...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
クエリの追加
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
式の追加
@@ -3798,18 +3830,6 @@
相対的な日付
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- 現在
-
From
@@ -3858,11 +3878,19 @@
追加日
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ 現在
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
1週間以内
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
1か月間以内
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
3か月間以内
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
1年以内
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
今年
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
今月
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
昨日
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
大文字・小文字を区別しない
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
ドキュメントタイプの割り当て
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
発信元の割り当て
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
新規ユーザーアカウントの作成
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
ユーザーアカウントの編集
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTPが無効です
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
TOTPの無効化に失敗しました
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
トリガーの種類
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
スケジュールされたトリガー オフセットと使用する日付フィールドを設定します。
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
オフセット日
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
相対的に
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
カスタムフィールド
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
日付に使用するカスタムフィールドです。
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
繰り返し
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
トリガーは繰り返します。
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
繰り返しの間隔
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
n日ごとにトリガーを繰り返します。
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
以下の すべての フィルターにマッチするドキュメントのトリガー
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
ファイル名のフィルター
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
このファイル名にマッチするドキュメントに適用されます。 *.pdf や *請求書* などのワイルドカードが使用できます。大文字・小文字を区別しません。
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
ソースのフィルター
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
パスのフィルター
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
このパスにマッチするドキュメントに適用されます。 * で指定されたワイルドカードが使用できます。大文字・小文字を区別しません。
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
メールルールのフィルター
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
このメールルールを介して利用されるドキュメントに適用されます。
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
内容のマッチングアルゴリズム
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
内容のマッチングパターン
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
アクションの種類
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
タイトルの割り当て
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
プレースホルダーを含めることができます。 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>マニュアル</a> を参照してください。
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
タグの割り当て
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
フォルダーの割り当て
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
カスタム項目の割り当て
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
所有者の割り当て
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
表示権限の割り当て
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
編集権限の割り当て
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
タグの削除
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
すべて削除
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
発信元の削除
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
ドキュメントタイプの削除
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
フォルダーの削除
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
カスタム項目の削除
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
所有者の削除
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
権限の削除
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
権限の表示
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
権限の編集
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
メールの件名
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
メール本文
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
メール受信者
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
ドキュメントを添付
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Webhook本文にパラメータを使用する
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
WebhookペイロードをJSONとして送信
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhookパラメータ
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook本文
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhookヘッダー
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
ドキュメントを含める
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未割り当て
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
フィルタを開く
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
プロフィールは正常に更新されました
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
プロフィールの保存に失敗しました
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
認証トークンの生成に失敗しました
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
ソーシャルアカウントの接続解除に失敗しました
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
TOTP設定の取得中にエラーが発生しました
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTPが正常に有効になりました
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
TOTPの有効化に失敗しました
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTPを無効にしました
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
TOTPの無効化に失敗しました
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
TIFFの読み込み中にエラーが発生しました:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
カスタム項目
@@ -8669,6 +8729,14 @@
すべて選択
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8685,18 +8753,6 @@
なし
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- 表示
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
タイトルと内容
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
ファイル形式
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
類似
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
が次の値と等しい
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
が空である
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
が空でない
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
が次の値より大きい
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
が次の値より小さい
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
発信元:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
発信元なし
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
ドキュメントタイプ:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
ドキュメントタイプなし
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
ストレージパス:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
フォルダーなし
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
タグ:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
タグなし
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
カスタムフィールドのクエリ
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
タイトル:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
所有者:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
所有者がいない:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
所有者なし
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
権限の更新に失敗しました
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
権限は正常に更新されました
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
この操作により、すべてのオブジェクトは完全に削除されます。
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
オブジェクトは正常に削除されました
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
オブジェクトの削除に失敗しました
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index f21f8d0d9..28c3cebf0 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
닫기
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
이전
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
다음
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
지난달
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
다음 달
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
시
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
닫기
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
월 선택
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
클릭해서 보기.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다.
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
어떻게 작동할까요?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
업데이트 가능
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
사이드바 업데이트 완료
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
사이드바 업데이트 중 오류가 발생했습니다
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
설정을 저장하는 중 오류가 발생하였습니다.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
참
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
거짓
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
문서 검색...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
아님
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
쿼리 추가
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
표현식 추가
@@ -3798,18 +3830,6 @@
상대적 날짜
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- 지금
-
From
@@ -3858,11 +3878,19 @@
추가됨
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ 지금
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
1주일 이내
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
1개월 이내
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
3개월 이내
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
1년 이내
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
올해
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
이번 달
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
어제
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
대소문자 구분 안 함
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
이 문서 유형 지정
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
에서 통신원을 지정합니다.
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
새로운 사용자 계정 만들기
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
사용자 계정 수정
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp 비활성화
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp 비활성화 실패됨
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
트리거 유형
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
예약 트리거 오프셋과 사용할 날짜 필드를 설정합니다.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
오프셋 날짜
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
양수 값은 날짜 이후에, 음수 값은 그 이전에 트리거됩니다.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
상대적
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
사용자 정의 필드
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
날짜에 사용할 사용자 지정 필드입니다.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
반복
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
트리거가 반복되고 있습니다.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
반복 간격일
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
n일마다 트리거를 반복합니다.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
아래에 지정된 모든 필터와 일치하는 문서에 대해 트리거합니다.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
파일 이름 필터
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 *invoice*와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
출처 필터
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
필터 경로
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
이 경로와 일치하는 문서에 적용합니다. 와일드카드는 *로 지정할 수 있습니다. 대/소문자 정규화.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
필터 메일 규칙
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
이 메일 규칙을 통해 사용되는 문서에 적용합니다.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
콘텐츠 일치 알고리즘
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
콘텐츠 일치 패턴
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
동작 유형
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
제목 지정
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
일부 자리표시자를 포함할 수 있습니다. 자세한 내용은 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>문서</a>를 참조하세요.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
태그 할당
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
이 저장 경로를 할당합니다.
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
사용자 지정 필드 할당
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
소유자 할당
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
보기 권한 할당
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
편집 권한 할당
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
태그 제거
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
모두 제거
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
담당자 제거
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
모든 문서 유형 제거
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
모든 저장소 경로 제거
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
사용자 정의 필드 제거
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
소유자 제거
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
권한 제거
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
권한 보기
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
권한 수정
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
이메일 제목
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
이메일 본문
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
이메일 수신자
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
문서 첨부
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
웹훅 URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
웹훅 본문에 매개변수 사용
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
웹훅 페이로드를 JSON으로 보내기
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
웹훅 매개변수
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
웹훅 본문
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
웹훅 헤더
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
문서 포함
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
할당되지 않음
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
"" 필터 열기
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6162,7 +6222,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ 모든 페이지 선택
Deselect all pages
@@ -6170,7 +6230,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ 모든 페이지 선택 해제
Rotate selected pages counter-clockwise
@@ -6178,7 +6238,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ 선택한 페이지 반시계방향으로 회전
Rotate selected pages clockwise
@@ -6186,7 +6246,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ 선택한 페이지 시계방향으로 회전
Delete selected pages
@@ -6194,7 +6254,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ 선택한 페이지 삭제
Rotate page counter-clockwise
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
프로필 업데이트 성공
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
프로필을 저장하는 중 오류가 발생하였습니다
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
인증 토큰을 생성하는 중 오류가 발생하였습니다
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
소셜 계정 연결 해제
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
TOTP 설정 가져오기 오류
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP가 성공적으로 활성화되었습니다.
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
TOTP 활성화 오류
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP가 성공적으로 비활성화되었습니다.
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
TOTP 비활성화 오류
@@ -6934,7 +6994,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
105
- Tasks Queue
+ 작업 대기열
Redis Status
@@ -6982,7 +7042,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
245
- Run Task
+ 작업 실행
Last Updated
@@ -7030,7 +7090,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- WebSocket Connection
+ WebSocket 연결
OK
@@ -7420,7 +7480,7 @@
src/app/components/document-detail/document-detail.component.html
58
- Print
+ 인쇄
More like this
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -7976,7 +8036,7 @@
src/app/components/document-detail/document-detail.component.ts
1096
- Error downloading document
+ 문서 다운로드 중 오류 발생
Page Fit
@@ -8006,15 +8066,15 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
- Print failed.
+ 인쇄 실패.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
tiff를 로드하는 동안 오류가 발생했습니다:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
사용자 정의 필드
@@ -8670,6 +8730,14 @@
전체 선택
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
없음
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- 표시
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
제목 & 자료
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
파일 종류
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
더 비슷한
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
일치
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
는(은) 비어 있습니다.
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
가 비어 있지 않습니다.
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
보다 큰
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
미만
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
담당자 없음
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
문서 유형:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
문서 유형 없음
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
저장 경로 없음
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
어떤 태그도 없이
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
사용자 정의 필드 쿼리
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
제목:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
소유자:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
소유자가 다음에 없습니다:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
소유자 없음
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
권한 업데이트 중 오류 발생
@@ -9792,7 +9848,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ 받음
Processed
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
권한을 성공적으로 업데이트하였습니다
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
이 작업은 모든 개체를 영구적으로 삭제합니다.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
개체가 성공적으로 삭제됨
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
개체 삭제 중 오류 발생
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 11f66b352..fedce8550 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zoumaachen
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Zréck
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Weider
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mount virdrun
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Nächste Mount
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zoumaachen
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Mount auswielen
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klicke fir unzeweisen.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Update disponibel
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Säiteleeschten-Usiichten aktualiséiert
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Wouer
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falsch
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Dokumenter sichen...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- elo
-
From
@@ -3858,11 +3878,19 @@
Dobäigesat
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ elo
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Bannent 1 Woch
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Bannent 1 Mount
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Bannent 3 Méint
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Bannent 1 Joer
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Dëst Joer
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Dëse Mount
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Gëschter
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Grouss-/Klengschreiwung ignoréieren
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Net zougewisen
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Alles auswielen
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel an Inhalt
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Méi ähnleches
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
ass gläich
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
ass eidel
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
ass net eidel
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
ass méi grouss ewéi
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
ass méi kleng ewéi
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Ouni Korrespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Ouni Dokumententyp
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Ouni Etikett
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 577c25bf8..84d6b222e 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Uždaryti
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Ankstesnis
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Kitas
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Ankstesnis mėnuo
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Kitas mėnuo
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Uždaryti
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Pasirinktas mėnuo
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Click to view.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Update available
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Added
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Case insensitive
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Select all
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Without any tag
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index c33e7a1ff..cfa24891d 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Aizvērt
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Iepriekšējais
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Nākamais
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Iepriekšējais mēnesis
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Nākamais mēnesis
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Aizvērt
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Izvēlieties mēnesi
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Click to view.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Pieejams atjauninājums
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Pievienots
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Case insensitive
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Dzēst birkas
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Dzēst visus
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Noņemt atļaujas
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Skatīt atļaujas
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Rediģēt atļaujas
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nav piešķirts
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profils tika sekmīgi atjaunināts
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Pielāgojami lauki
@@ -8670,6 +8730,14 @@
Atzīmēt visu
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Neviens
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
ir tukšs
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
lielāks par
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
mazāk kā
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Bez birkas
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf
new file mode 100644
index 000000000..b1da14d38
--- /dev/null
+++ b/src-ui/src/locale/messages.mk_MK.xlf
@@ -0,0 +1,11480 @@
+
+
+
+
+
+ Close
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ 50
+
+ Close
+
+
+ Slide of
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ 131,135
+
+ Currently selected slide number read by screen reader
+ Slide of
+
+
+ Previous
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ 157,159
+
+ Previous
+
+
+ Next
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ 198
+
+ Next
+
+
+ Previous month
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ 83,85
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ 112
+
+ Previous month
+
+
+ Next month
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ 112
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ 112
+
+ Next month
+
+
+ HH
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ HH
+
+
+ Close
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Close
+
+
+ Select month
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Select month
+
+
+
+ Hours
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Hours
+
+
+
+ MM
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ MM
+
+
+
+ Select year
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Select year
+
+
+ Minutes
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Minutes
+
+
+
+
+ Increment hours
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Increment hours
+
+
+
+ Decrement hours
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Decrement hours
+
+
+
+ Increment minutes
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Increment minutes
+
+
+
+ Decrement minutes
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Decrement minutes
+
+
+ SS
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ SS
+
+
+ Seconds
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Seconds
+
+
+ Increment seconds
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Increment seconds
+
+
+ Decrement seconds
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+ Decrement seconds
+
+
+
+
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ 13
+
+
+
+
+
+
+
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts
+ 41,42
+
+
+
+
+ Document was added to Paperless-ngx.
+
+ src/app/app.component.ts
+ 95
+
+
+ src/app/app.component.ts
+ 104
+
+ Document was added to Paperless-ngx.
+
+
+ Open document
+
+ src/app/app.component.ts
+ 97
+
+
+ src/app/components/admin/trash/trash.component.ts
+ 146
+
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 44
+
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 47
+
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 50
+
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
+ 58
+
+ Open document
+
+
+ Could not add :
+
+ src/app/app.component.ts
+ 119
+
+ Could not add :
+
+
+ Document is being processed by Paperless-ngx.
+
+ src/app/app.component.ts
+ 134
+
+ Document is being processed by Paperless-ngx.
+
+
+ Dashboard
+
+ src/app/app.component.ts
+ 141
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 84
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 86
+
+
+ src/app/components/dashboard/dashboard.component.html
+ 1
+
+ Dashboard
+
+
+ Documents
+
+ src/app/app.component.ts
+ 152
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 91
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 93
+
+
+ src/app/components/document-list/document-list.component.ts
+ 192
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 61
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 133
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 133
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 133
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 133
+
+ Documents
+
+
+ Settings
+
+ src/app/app.component.ts
+ 164
+
+
+ src/app/components/admin/settings/settings.component.html
+ 2
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 51
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 255
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 257
+
+ Settings
+
+
+ Prev
+
+ src/app/app.component.ts
+ 170
+
+ Prev
+
+
+ Next
+
+ src/app/app.component.ts
+ 171
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 113
+
+ Next
+
+
+ End
+
+ src/app/app.component.ts
+ 172
+
+ End
+
+
+ The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some.
+
+ src/app/app.component.ts
+ 178
+
+ The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some.
+
+
+ Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
+
+ src/app/app.component.ts
+ 185
+
+ Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms.
+
+
+ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
+
+ src/app/app.component.ts
+ 190
+
+ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar.
+
+
+ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
+
+ src/app/app.component.ts
+ 197
+
+ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc.
+
+
+ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
+
+ src/app/app.component.ts
+ 203
+
+ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar.
+
+
+ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
+
+ src/app/app.component.ts
+ 208
+
+ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view.
+
+
+ Manage e-mail accounts and rules for automatically importing documents.
+
+ src/app/app.component.ts
+ 216
+
+
+ src/app/components/manage/mail/mail.component.html
+ 4
+
+ Manage e-mail accounts and rules for automatically importing documents.
+
+
+ Workflows give you more control over the document pipeline.
+
+ src/app/app.component.ts
+ 224
+
+ Workflows give you more control over the document pipeline.
+
+
+ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
+
+ src/app/app.component.ts
+ 232
+
+
+ src/app/components/admin/tasks/tasks.component.html
+ 4
+
+ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
+
+
+ Check out the settings for various tweaks to the web app.
+
+ src/app/app.component.ts
+ 240
+
+ Check out the settings for various tweaks to the web app.
+
+
+ Thank you! 🙏
+
+ src/app/app.component.ts
+ 248
+
+ Thank you! 🙏
+
+
+ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
+
+ src/app/app.component.ts
+ 250
+
+ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues.
+
+
+ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
+
+ src/app/app.component.ts
+ 252
+
+ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx!
+
+
+ Application Configuration
+
+ src/app/components/admin/config/config.component.html
+ 2
+
+ Application Configuration
+
+
+ Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
+
+ src/app/components/admin/config/config.component.html
+ 4
+
+ Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
+
+
+ Read the documentation about this setting
+
+ src/app/components/admin/config/config.component.html
+ 25
+
+ Read the documentation about this setting
+
+
+ Enable
+
+ src/app/components/admin/config/config.component.html
+ 34
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 123
+
+ Enable
+
+
+ Discard
+
+ src/app/components/admin/config/config.component.html
+ 53
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 374
+
+ Discard
+
+
+ Save
+
+ src/app/components/admin/config/config.component.html
+ 56
+
+
+ src/app/components/admin/settings/settings.component.html
+ 362
+
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 26
+
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 52
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 28
+
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+ 20
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 40
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 76
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 77
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 31
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 57
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 116
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 183
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 367
+
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 83
+
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 21
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 74
+
+ Save
+
+
+ Error retrieving config
+
+ src/app/components/admin/config/config.component.ts
+ 103
+
+ Error retrieving config
+
+
+ Invalid JSON
+
+ src/app/components/admin/config/config.component.ts
+ 129
+
+ Invalid JSON
+
+
+ Configuration updated
+
+ src/app/components/admin/config/config.component.ts
+ 173
+
+ Configuration updated
+
+
+ An error occurred updating configuration
+
+ src/app/components/admin/config/config.component.ts
+ 178
+
+ An error occurred updating configuration
+
+
+ File successfully updated
+
+ src/app/components/admin/config/config.component.ts
+ 200
+
+ File successfully updated
+
+
+ An error occurred uploading file
+
+ src/app/components/admin/config/config.component.ts
+ 205
+
+ An error occurred uploading file
+
+
+ Logs
+
+ src/app/components/admin/logs/logs.component.html
+ 2
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 290
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 293
+
+ Logs
+
+
+ Review the log files for the application and for email checking.
+
+ src/app/components/admin/logs/logs.component.html
+ 4
+
+ Review the log files for the application and for email checking.
+
+
+ Show
+
+ src/app/components/admin/logs/logs.component.html
+ 8
+
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Show
+
+
+ lines
+
+ src/app/components/admin/logs/logs.component.html
+ 17
+
+ lines
+
+
+ Auto refresh
+
+ src/app/components/admin/logs/logs.component.html
+ 21
+
+
+ src/app/components/admin/tasks/tasks.component.html
+ 41
+
+ Auto refresh
+
+
+ Loading...
+
+ src/app/components/admin/logs/logs.component.html
+ 38
+
+
+ src/app/components/admin/logs/logs.component.html
+ 48
+
+
+ src/app/components/admin/tasks/tasks.component.html
+ 48
+
+
+ src/app/components/admin/trash/trash.component.html
+ 45
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 92
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 35
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 50
+
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 58
+
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.html
+ 23
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 110
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 126
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 10
+
+
+ src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
+ 18
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 387
+
+
+ src/app/components/document-list/document-list.component.html
+ 134
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 26
+
+
+ src/app/components/manage/mail/mail.component.html
+ 40
+
+
+ src/app/components/manage/mail/mail.component.html
+ 123
+
+
+ src/app/components/manage/mail/mail.component.html
+ 192
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 16
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 52
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 52
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 52
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 52
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 68
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 28
+
+ Loading...
+
+
+ Jump to bottom
+
+ src/app/components/admin/logs/logs.component.html
+ 60
+
+ Jump to bottom
+
+
+ Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>.
+
+ src/app/components/admin/settings/settings.component.html
+ 4
+
+ Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>.
+
+
+ Start tour
+
+ src/app/components/admin/settings/settings.component.html
+ 8
+
+ Start tour
+
+
+ System Status
+
+ src/app/components/admin/settings/settings.component.html
+ 27
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 2
+
+ System Status
+
+
+ Open Django Admin
+
+ src/app/components/admin/settings/settings.component.html
+ 30
+
+ Open Django Admin
+
+
+ General
+
+ src/app/components/admin/settings/settings.component.html
+ 40
+
+ General
+
+
+ Appearance
+
+ src/app/components/admin/settings/settings.component.html
+ 44
+
+ Appearance
+
+
+ Display language
+
+ src/app/components/admin/settings/settings.component.html
+ 47
+
+ Display language
+
+
+ You need to reload the page after applying a new language.
+
+ src/app/components/admin/settings/settings.component.html
+ 60
+
+ You need to reload the page after applying a new language.
+
+
+ Date display
+
+ src/app/components/admin/settings/settings.component.html
+ 68
+
+ Date display
+
+
+ Date format
+
+ src/app/components/admin/settings/settings.component.html
+ 85
+
+ Date format
+
+
+ Short:
+
+ src/app/components/admin/settings/settings.component.html
+ 91,92
+
+ Short:
+
+
+ Medium:
+
+ src/app/components/admin/settings/settings.component.html
+ 95,96
+
+ Medium:
+
+
+ Long:
+
+ src/app/components/admin/settings/settings.component.html
+ 99,100
+
+ Long:
+
+
+ Items per page
+
+ src/app/components/admin/settings/settings.component.html
+ 107
+
+ Items per page
+
+
+ Sidebar
+
+ src/app/components/admin/settings/settings.component.html
+ 123
+
+ Sidebar
+
+
+ Use 'slim' sidebar (icons only)
+
+ src/app/components/admin/settings/settings.component.html
+ 127
+
+ Use 'slim' sidebar (icons only)
+
+
+ Dark mode
+
+ src/app/components/admin/settings/settings.component.html
+ 134
+
+ Dark mode
+
+
+ Use system settings
+
+ src/app/components/admin/settings/settings.component.html
+ 137
+
+ Use system settings
+
+
+ Enable dark mode
+
+ src/app/components/admin/settings/settings.component.html
+ 138
+
+ Enable dark mode
+
+
+ Invert thumbnails in dark mode
+
+ src/app/components/admin/settings/settings.component.html
+ 139
+
+ Invert thumbnails in dark mode
+
+
+ Theme Color
+
+ src/app/components/admin/settings/settings.component.html
+ 145
+
+ Theme Color
+
+
+ Reset
+
+ src/app/components/admin/settings/settings.component.html
+ 152
+
+ Reset
+
+
+ Update checking
+
+ src/app/components/admin/settings/settings.component.html
+ 157
+
+ Update checking
+
+
+ Enable update checking
+
+ src/app/components/admin/settings/settings.component.html
+ 160
+
+ Enable update checking
+
+
+ What's this?
+
+ src/app/components/admin/settings/settings.component.html
+ 161
+
+
+ src/app/components/common/page-header/page-header.component.html
+ 9
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 4
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 3
+
+ What's this?
+
+
+ Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+
+ src/app/components/admin/settings/settings.component.html
+ 165,167
+
+ Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+
+
+ No tracking data is collected by the app in any way.
+
+ src/app/components/admin/settings/settings.component.html
+ 169
+
+ No tracking data is collected by the app in any way.
+
+
+ Saved Views
+
+ src/app/components/admin/settings/settings.component.html
+ 175
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 215
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 217
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 2
+
+ Saved Views
+
+
+ Show warning when closing saved views with unsaved changes
+
+ src/app/components/admin/settings/settings.component.html
+ 178
+
+ Show warning when closing saved views with unsaved changes
+
+
+ Show document counts in sidebar saved views
+
+ src/app/components/admin/settings/settings.component.html
+ 179
+
+ Show document counts in sidebar saved views
+
+
+ Document editing
+
+ src/app/components/admin/settings/settings.component.html
+ 185
+
+ Document editing
+
+
+ Use PDF viewer provided by the browser
+
+ src/app/components/admin/settings/settings.component.html
+ 189
+
+ Use PDF viewer provided by the browser
+
+
+ This is usually faster for displaying large PDF documents, but it might not work on some browsers.
+
+ src/app/components/admin/settings/settings.component.html
+ 189
+
+ This is usually faster for displaying large PDF documents, but it might not work on some browsers.
+
+
+ Default zoom
+
+ src/app/components/admin/settings/settings.component.html
+ 195
+
+ Default zoom
+
+
+ Fit width
+
+ src/app/components/admin/settings/settings.component.html
+ 199
+
+ Fit width
+
+
+ Fit page
+
+ src/app/components/admin/settings/settings.component.html
+ 200
+
+ Fit page
+
+
+ Only applies to the Paperless-ngx PDF viewer.
+
+ src/app/components/admin/settings/settings.component.html
+ 202
+
+ Only applies to the Paperless-ngx PDF viewer.
+
+
+ Automatically remove inbox tag(s) on save
+
+ src/app/components/admin/settings/settings.component.html
+ 208
+
+ Automatically remove inbox tag(s) on save
+
+
+ Show document thumbnail during loading
+
+ src/app/components/admin/settings/settings.component.html
+ 214
+
+ Show document thumbnail during loading
+
+
+ Global search
+
+ src/app/components/admin/settings/settings.component.html
+ 218
+
+
+ src/app/components/app-frame/global-search/global-search.component.ts
+ 122
+
+ Global search
+
+
+ Do not include advanced search results
+
+ src/app/components/admin/settings/settings.component.html
+ 221
+
+ Do not include advanced search results
+
+
+ Full search links to
+
+ src/app/components/admin/settings/settings.component.html
+ 227
+
+ Full search links to
+
+
+ Title and content search
+
+ src/app/components/admin/settings/settings.component.html
+ 231
+
+ Title and content search
+
+
+ Advanced search
+
+ src/app/components/admin/settings/settings.component.html
+ 232
+
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 24
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 208
+
+ Advanced search
+
+
+ Bulk editing
+
+ src/app/components/admin/settings/settings.component.html
+ 237
+
+ Bulk editing
+
+
+ Show confirmation dialogs
+
+ src/app/components/admin/settings/settings.component.html
+ 240
+
+ Show confirmation dialogs
+
+
+ Apply on close
+
+ src/app/components/admin/settings/settings.component.html
+ 241
+
+ Apply on close
+
+
+ Notes
+
+ src/app/components/admin/settings/settings.component.html
+ 245
+
+
+ src/app/components/document-list/document-list.component.html
+ 242
+
+
+ src/app/data/document.ts
+ 58
+
+
+ src/app/data/document.ts
+ 95
+
+ Notes
+
+
+ Enable notes
+
+ src/app/components/admin/settings/settings.component.html
+ 248
+
+ Enable notes
+
+
+ Permissions
+
+ src/app/components/admin/settings/settings.component.html
+ 259
+
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+ 14
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 51
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 2
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 343
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 78
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 101
+
+
+ src/app/components/manage/mail/mail.component.html
+ 66
+
+
+ src/app/components/manage/mail/mail.component.html
+ 78
+
+
+ src/app/components/manage/mail/mail.component.html
+ 154
+
+
+ src/app/components/manage/mail/mail.component.html
+ 166
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 7
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 7
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 7
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 7
+
+ Permissions
+
+
+ Default Permissions
+
+ src/app/components/admin/settings/settings.component.html
+ 262
+
+ Default Permissions
+
+
+ Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI.
+
+ src/app/components/admin/settings/settings.component.html
+ 266,268
+
+ Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI.
+
+
+ Default Owner
+
+ src/app/components/admin/settings/settings.component.html
+ 273
+
+ Default Owner
+
+
+ Objects without an owner can be viewed and edited by all users
+
+ src/app/components/admin/settings/settings.component.html
+ 277
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 32
+
+ Objects without an owner can be viewed and edited by all users
+
+
+ Default View Permissions
+
+ src/app/components/admin/settings/settings.component.html
+ 282
+
+ Default View Permissions
+
+
+ Users:
+
+ src/app/components/admin/settings/settings.component.html
+ 287
+
+
+ src/app/components/admin/settings/settings.component.html
+ 314
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 278
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 297
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 364
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 383
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 38
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 57
+
+ Users:
+
+
+ Groups:
+
+ src/app/components/admin/settings/settings.component.html
+ 297
+
+
+ src/app/components/admin/settings/settings.component.html
+ 324
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 286
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 305
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 372
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 391
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 46
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 65
+
+ Groups:
+
+
+ Default Edit Permissions
+
+ src/app/components/admin/settings/settings.component.html
+ 309
+
+ Default Edit Permissions
+
+
+ Edit permissions also grant viewing permissions
+
+ src/app/components/admin/settings/settings.component.html
+ 333
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 311
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 397
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 71
+
+ Edit permissions also grant viewing permissions
+
+
+ Notifications
+
+ src/app/components/admin/settings/settings.component.html
+ 341
+
+
+ src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
+ 11
+
+ Notifications
+
+
+ Document processing
+
+ src/app/components/admin/settings/settings.component.html
+ 344
+
+ Document processing
+
+
+ Show notifications when new documents are detected
+
+ src/app/components/admin/settings/settings.component.html
+ 348
+
+ Show notifications when new documents are detected
+
+
+ Show notifications when document processing completes successfully
+
+ src/app/components/admin/settings/settings.component.html
+ 349
+
+ Show notifications when document processing completes successfully
+
+
+ Show notifications when document processing fails
+
+ src/app/components/admin/settings/settings.component.html
+ 350
+
+ Show notifications when document processing fails
+
+
+ Suppress notifications on dashboard
+
+ src/app/components/admin/settings/settings.component.html
+ 351
+
+ Suppress notifications on dashboard
+
+
+ This will suppress all messages about document processing status on the dashboard.
+
+ src/app/components/admin/settings/settings.component.html
+ 351
+
+ This will suppress all messages about document processing status on the dashboard.
+
+
+ Cancel
+
+ src/app/components/admin/settings/settings.component.html
+ 361
+
+
+ src/app/components/common/confirm-dialog/confirm-dialog.component.ts
+ 48
+
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 25
+
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 51
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 27
+
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+ 19
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 39
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 75
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 76
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 30
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 56
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 115
+
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.html
+ 25
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 182
+
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 81
+
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 20
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 73
+
+ Cancel
+
+
+ Use system language
+
+ src/app/components/admin/settings/settings.component.ts
+ 78
+
+ Use system language
+
+
+ Use date format of display language
+
+ src/app/components/admin/settings/settings.component.ts
+ 81
+
+ Use date format of display language
+
+
+ Error retrieving users
+
+ src/app/components/admin/settings/settings.component.ts
+ 226
+
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 75
+
+ Error retrieving users
+
+
+ Error retrieving groups
+
+ src/app/components/admin/settings/settings.component.ts
+ 245
+
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 89
+
+ Error retrieving groups
+
+
+ Settings were saved successfully.
+
+ src/app/components/admin/settings/settings.component.ts
+ 548
+
+ Settings were saved successfully.
+
+
+ Settings were saved successfully. Reload is required to apply some changes.
+
+ src/app/components/admin/settings/settings.component.ts
+ 552
+
+ Settings were saved successfully. Reload is required to apply some changes.
+
+
+ Reload now
+
+ src/app/components/admin/settings/settings.component.ts
+ 553
+
+ Reload now
+
+
+ An error occurred while saving settings.
+
+ src/app/components/admin/settings/settings.component.ts
+ 563
+
+
+ src/app/components/app-frame/app-frame.component.ts
+ 180
+
+ An error occurred while saving settings.
+
+
+ File Tasks
+
+ src/app/components/admin/tasks/tasks.component.html
+ 2
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 278
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 280
+
+ File Tasks
+
+
+ Clear selection
+
+ src/app/components/admin/tasks/tasks.component.html
+ 9
+
+
+ src/app/components/admin/trash/trash.component.html
+ 8
+
+
+ src/app/components/document-list/document-list.component.html
+ 153
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 4
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 4
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 4
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 4
+
+ Clear selection
+
+
+ Filter by
+
+ src/app/components/admin/tasks/tasks.component.html
+ 16
+
+ Filter by
+
+
+ Name
+
+ src/app/components/admin/tasks/tasks.component.html
+ 61
+
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 45
+
+
+ src/app/components/admin/trash/trash.component.html
+ 35
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 21
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 58
+
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 12
+
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 11
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 13
+
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+ 13
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 13
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 13
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 12
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 11
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 13
+
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 8
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 17
+
+
+ src/app/components/manage/mail/mail.component.html
+ 30
+
+
+ src/app/components/manage/mail/mail.component.html
+ 111
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 21
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 21
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 21
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 21
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 38
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 38
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 38
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 38
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 17
+
+ Name
+
+
+ Created
+
+ src/app/components/admin/tasks/tasks.component.html
+ 62
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 8
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 94
+
+
+ src/app/components/document-list/document-list.component.html
+ 269
+
+
+ src/app/data/document.ts
+ 34
+
+
+ src/app/data/document.ts
+ 92
+
+ Created
+
+
+ Results
+
+ src/app/components/admin/tasks/tasks.component.html
+ 64
+
+ Results
+
+
+ Info
+
+ src/app/components/admin/tasks/tasks.component.html
+ 66
+
+ Info
+
+
+ Actions
+
+ src/app/components/admin/tasks/tasks.component.html
+ 67
+
+
+ src/app/components/admin/trash/trash.component.html
+ 37
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 23
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 61
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 67
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 50
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 87
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 19
+
+
+ src/app/components/manage/mail/mail.component.html
+ 33
+
+
+ src/app/components/manage/mail/mail.component.html
+ 116
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 44
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 44
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 44
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 44
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 28
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 21
+
+ Actions
+
+
+ click for full output
+
+ src/app/components/admin/tasks/tasks.component.html
+ 97
+
+ click for full output
+
+
+ Dismiss
+
+ src/app/components/admin/tasks/tasks.component.html
+ 110
+
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 155
+
+ Dismiss
+
+
+ Open Document
+
+ src/app/components/admin/tasks/tasks.component.html
+ 115
+
+ Open Document
+
+
+ {VAR_PLURAL, plural, =1 {One task} other { total tasks}}
+
+ src/app/components/admin/tasks/tasks.component.html
+ 134
+
+ {VAR_PLURAL, plural, =1 {One task} other { total tasks}}
+
+
+ ( selected)
+
+ src/app/components/admin/tasks/tasks.component.html
+ 136
+
+ ( selected)
+
+
+ Failed
+
+ src/app/components/admin/tasks/tasks.component.html
+ 148,150
+
+ Failed
+
+
+ Complete
+
+ src/app/components/admin/tasks/tasks.component.html
+ 156,158
+
+ Complete
+
+
+ Started
+
+ src/app/components/admin/tasks/tasks.component.html
+ 164,166
+
+ Started
+
+
+ Queued
+
+ src/app/components/admin/tasks/tasks.component.html
+ 172,174
+
+ Queued
+
+
+ Result
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 46
+
+ Result
+
+
+ Dismiss selected
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 110
+
+ Dismiss selected
+
+
+ Dismiss all
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 111
+
+ Dismiss all
+
+
+ Confirm Dismiss All
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 152
+
+ Confirm Dismiss All
+
+
+ Dismiss all tasks?
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 153
+
+ Dismiss all tasks?
+
+
+ Error dismissing tasks
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 161
+
+ Error dismissing tasks
+
+
+ Error dismissing task
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 170
+
+ Error dismissing task
+
+
+ queued
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 246
+
+ queued
+
+
+ started
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 248
+
+ started
+
+
+ completed
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 250
+
+ completed
+
+
+ failed
+
+ src/app/components/admin/tasks/tasks.component.ts
+ 252
+
+ failed
+
+
+ Trash
+
+ src/app/components/admin/trash/trash.component.html
+ 2
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 238
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 241
+
+ Trash
+
+
+ Manage trashed documents that are pending deletion.
+
+ src/app/components/admin/trash/trash.component.html
+ 4
+
+ Manage trashed documents that are pending deletion.
+
+
+ Restore selected
+
+ src/app/components/admin/trash/trash.component.html
+ 11
+
+ Restore selected
+
+
+ Delete selected
+
+ src/app/components/admin/trash/trash.component.html
+ 14
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 87
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 89
+
+ Delete selected
+
+
+ Empty trash
+
+ src/app/components/admin/trash/trash.component.html
+ 17
+
+ Empty trash
+
+
+ Remaining
+
+ src/app/components/admin/trash/trash.component.html
+ 36
+
+ Remaining
+
+
+ days
+
+ src/app/components/admin/trash/trash.component.html
+ 63
+
+ days
+
+
+ Restore
+
+ src/app/components/admin/trash/trash.component.html
+ 71
+
+
+ src/app/components/admin/trash/trash.component.html
+ 78
+
+ Restore
+
+
+ Delete
+
+ src/app/components/admin/trash/trash.component.html
+ 72
+
+
+ src/app/components/admin/trash/trash.component.html
+ 81
+
+
+ src/app/components/admin/trash/trash.component.ts
+ 82
+
+
+ src/app/components/admin/trash/trash.component.ts
+ 116
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 38
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 76
+
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 27
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 87
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 45
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 89
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 242
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 19
+
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 36
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 24
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 145
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 43
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 55
+
+
+ src/app/components/manage/mail/mail.component.html
+ 67
+
+
+ src/app/components/manage/mail/mail.component.html
+ 81
+
+
+ src/app/components/manage/mail/mail.component.html
+ 155
+
+
+ src/app/components/manage/mail/mail.component.html
+ 169
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 10
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 10
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 10
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 10
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 115
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 115
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 115
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 115
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 127
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 127
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 127
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 127
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 243
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 30
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 55
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 66
+
+ Delete
+
+
+ {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}}
+
+ src/app/components/admin/trash/trash.component.html
+ 94
+
+ {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}}
+
+
+ Confirm delete
+
+ src/app/components/admin/trash/trash.component.ts
+ 78
+
+
+ src/app/components/admin/trash/trash.component.ts
+ 110
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 239
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 362
+
+ Confirm delete
+
+
+ This operation will permanently delete this document.
+
+ src/app/components/admin/trash/trash.component.ts
+ 79
+
+ This operation will permanently delete this document.
+
+
+ This operation cannot be undone.
+
+ src/app/components/admin/trash/trash.component.ts
+ 80
+
+
+ src/app/components/admin/trash/trash.component.ts
+ 114
+
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 145
+
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 198
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 104
+
+
+ src/app/components/manage/mail/mail.component.ts
+ 192
+
+
+ src/app/components/manage/mail/mail.component.ts
+ 293
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 364
+
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 133
+
+ This operation cannot be undone.
+
+
+ Document "" deleted
+
+ src/app/components/admin/trash/trash.component.ts
+ 90
+
+ Document "" deleted
+
+
+ Error deleting document ""
+
+ src/app/components/admin/trash/trash.component.ts
+ 97
+
+ Error deleting document ""
+
+
+ This operation will permanently delete the selected documents.
+
+ src/app/components/admin/trash/trash.component.ts
+ 112
+
+ This operation will permanently delete the selected documents.
+
+
+ This operation will permanently delete all documents in the trash.
+
+ src/app/components/admin/trash/trash.component.ts
+ 113
+
+ This operation will permanently delete all documents in the trash.
+
+
+ Document(s) deleted
+
+ src/app/components/admin/trash/trash.component.ts
+ 124
+
+ Document(s) deleted
+
+
+ Error deleting document(s)
+
+ src/app/components/admin/trash/trash.component.ts
+ 131
+
+ Error deleting document(s)
+
+
+ Document "" restored
+
+ src/app/components/admin/trash/trash.component.ts
+ 144
+
+ Document "" restored
+
+
+ Error restoring document ""
+
+ src/app/components/admin/trash/trash.component.ts
+ 155
+
+ Error restoring document ""
+
+
+ Document(s) restored
+
+ src/app/components/admin/trash/trash.component.ts
+ 167
+
+ Document(s) restored
+
+
+ Error restoring document(s)
+
+ src/app/components/admin/trash/trash.component.ts
+ 173
+
+ Error restoring document(s)
+
+
+ Users & Groups
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 2
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 269
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 271
+
+ Users & Groups
+
+
+ Create, delete and edit users and groups.
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 4
+
+ Create, delete and edit users and groups.
+
+
+ Users
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 12
+
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 76
+
+ Users
+
+
+ Add User
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 14
+
+ Add User
+
+
+ Username
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 20
+
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 19
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 13
+
+
+ src/app/components/manage/mail/mail.component.html
+ 32
+
+ Username
+
+
+ Groups
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 22
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 50
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 34
+
+ Groups
+
+
+ Edit
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 35
+
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 73
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 53
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 42
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 52
+
+
+ src/app/components/manage/mail/mail.component.html
+ 65
+
+
+ src/app/components/manage/mail/mail.component.html
+ 75
+
+
+ src/app/components/manage/mail/mail.component.html
+ 153
+
+
+ src/app/components/manage/mail/mail.component.html
+ 163
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 114
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 114
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 114
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 114
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 124
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 124
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 124
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 124
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 54
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 63
+
+ Edit
+
+
+ Add Group
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 52
+
+ Add Group
+
+
+ No groups defined
+
+ src/app/components/admin/users-groups/users-groups.component.html
+ 84
+
+ No groups defined
+
+
+ Password has been changed, you will be logged out momentarily.
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 116
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 196
+
+ Password has been changed, you will be logged out momentarily.
+
+
+ Saved user "".
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 125
+
+ Saved user "".
+
+
+ Error saving user.
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 135
+
+ Error saving user.
+
+
+ Confirm delete user account
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 143
+
+ Confirm delete user account
+
+
+ This operation will permanently delete this user account.
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 144
+
+ This operation will permanently delete this user account.
+
+
+ Proceed
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 147
+
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 200
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1028
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1393
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 798
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 831
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 850
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 106
+
+
+ src/app/components/manage/mail/mail.component.ts
+ 194
+
+
+ src/app/components/manage/mail/mail.component.ts
+ 295
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 366
+
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 135
+
+ Proceed
+
+
+ Deleted user ""
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 153
+
+ Deleted user ""
+
+
+ Error deleting user "".
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 160
+
+ Error deleting user "".
+
+
+ Saved group "".
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 180
+
+ Saved group "".
+
+
+ Error saving group.
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 188
+
+ Error saving group.
+
+
+ Confirm delete user group
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 196
+
+ Confirm delete user group
+
+
+ This operation will permanently delete this user group.
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 197
+
+ This operation will permanently delete this user group.
+
+
+ Deleted group ""
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 206
+
+ Deleted group ""
+
+
+ Error deleting group "".
+
+ src/app/components/admin/users-groups/users-groups.component.ts
+ 213
+
+ Error deleting group "".
+
+
+ by Paperless-ngx
+
+ src/app/components/app-frame/app-frame.component.html
+ 20
+
+ by Paperless-ngx
+
+
+ Logged in as
+
+ src/app/components/app-frame/app-frame.component.html
+ 43
+
+ Logged in as
+
+
+ My Profile
+
+ src/app/components/app-frame/app-frame.component.html
+ 47
+
+ My Profile
+
+
+ Logout
+
+ src/app/components/app-frame/app-frame.component.html
+ 54
+
+ Logout
+
+
+ Documentation
+
+ src/app/components/app-frame/app-frame.component.html
+ 59
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 299
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 302
+
+ Documentation
+
+
+ Saved views
+
+ src/app/components/app-frame/app-frame.component.html
+ 101
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 106
+
+ Saved views
+
+
+ Open documents
+
+ src/app/components/app-frame/app-frame.component.html
+ 141
+
+ Open documents
+
+
+ Close all
+
+ src/app/components/app-frame/app-frame.component.html
+ 161
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 163
+
+ Close all
+
+
+ Manage
+
+ src/app/components/app-frame/app-frame.component.html
+ 172
+
+ Manage
+
+
+ Correspondents
+
+ src/app/components/app-frame/app-frame.component.html
+ 178
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 180
+
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 107
+
+ Correspondents
+
+
+ Tags
+
+ src/app/components/app-frame/app-frame.component.html
+ 185
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 188
+
+
+ src/app/components/common/input/tags/tags.component.ts
+ 80
+
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 94
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 5
+
+
+ src/app/components/document-list/document-list.component.html
+ 224
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 39
+
+
+ src/app/data/document.ts
+ 42
+
+ Tags
+
+
+ Document Types
+
+ src/app/components/app-frame/app-frame.component.html
+ 194
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 196
+
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 120
+
+ Document Types
+
+
+ Storage Paths
+
+ src/app/components/app-frame/app-frame.component.html
+ 201
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 203
+
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 133
+
+ Storage Paths
+
+
+ Custom Fields
+
+ src/app/components/app-frame/app-frame.component.html
+ 208
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 210
+
+
+ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
+ 4
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 2
+
+ Custom Fields
+
+
+ Workflows
+
+ src/app/components/app-frame/app-frame.component.html
+ 224
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 226
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 2
+
+ Workflows
+
+
+ Mail
+
+ src/app/components/app-frame/app-frame.component.html
+ 231
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 234
+
+ Mail
+
+
+ Administration
+
+ src/app/components/app-frame/app-frame.component.html
+ 249
+
+ Administration
+
+
+ Configuration
+
+ src/app/components/app-frame/app-frame.component.html
+ 262
+
+
+ src/app/components/app-frame/app-frame.component.html
+ 264
+
+ Configuration
+
+
+ GitHub
+
+ src/app/components/app-frame/app-frame.component.html
+ 309
+
+ GitHub
+
+
+ is available.
+
+ src/app/components/app-frame/app-frame.component.html
+ 318,319
+
+ is available.
+
+
+ Click to view.
+
+ src/app/components/app-frame/app-frame.component.html
+ 319
+
+ Click to view.
+
+
+ Paperless-ngx can automatically check for updates
+
+ src/app/components/app-frame/app-frame.component.html
+ 323
+
+ Paperless-ngx can automatically check for updates
+
+
+ How does this work?
+
+ src/app/components/app-frame/app-frame.component.html
+ 330,332
+
+ How does this work?
+
+
+ Update available
+
+ src/app/components/app-frame/app-frame.component.html
+ 343
+
+ Update available
+
+
+ Sidebar views updated
+
+ src/app/components/app-frame/app-frame.component.ts
+ 264
+
+ Sidebar views updated
+
+
+ Error updating sidebar views
+
+ src/app/components/app-frame/app-frame.component.ts
+ 267
+
+ Error updating sidebar views
+
+
+ An error occurred while saving update checking settings.
+
+ src/app/components/app-frame/app-frame.component.ts
+ 288
+
+ An error occurred while saving update checking settings.
+
+
+ Search
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 8
+
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 26
+
+ Search
+
+
+ Open
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 53
+
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 56
+
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 59
+
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 76
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 72
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 143
+
+ Open
+
+
+ Filter documents
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 62
+
+ Filter documents
+
+
+ Download
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 73
+
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 104
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 34
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 117
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 78
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 149
+
+ Download
+
+
+ No results
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 87
+
+ No results
+
+
+ Documents
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 90
+
+ Documents
+
+
+ Saved Views
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 96
+
+ Saved Views
+
+
+ Tags
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 103
+
+ Tags
+
+
+ Correspondents
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 110
+
+ Correspondents
+
+
+ Document types
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 117
+
+ Document types
+
+
+ Storage paths
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 124
+
+ Storage paths
+
+
+ Users
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 131
+
+ Users
+
+
+ Groups
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 138
+
+ Groups
+
+
+ Custom fields
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 145
+
+ Custom fields
+
+
+ Mail accounts
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 152
+
+ Mail accounts
+
+
+ Mail rules
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 159
+
+ Mail rules
+
+
+ Workflows
+
+ src/app/components/app-frame/global-search/global-search.component.html
+ 166
+
+ Workflows
+
+
+ Successfully updated object.
+
+ src/app/components/app-frame/global-search/global-search.component.ts
+ 211
+
+
+ src/app/components/app-frame/global-search/global-search.component.ts
+ 249
+
+ Successfully updated object.
+
+
+ Error occurred saving object.
+
+ src/app/components/app-frame/global-search/global-search.component.ts
+ 214
+
+
+ src/app/components/app-frame/global-search/global-search.component.ts
+ 252
+
+ Error occurred saving object.
+
+
+ Clear All
+
+ src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
+ 16
+
+ Clear All
+
+
+ No notifications
+
+ src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html
+ 20
+
+ No notifications
+
+
+ Clear
+
+ src/app/components/common/clearable-badge/clearable-badge.component.html
+ 2
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 85
+
+ Clear
+
+
+ Are you sure?
+
+ src/app/components/common/confirm-button/confirm-button.component.ts
+ 22
+
+ Are you sure?
+
+
+ Confirmation
+
+ src/app/components/common/confirm-dialog/confirm-dialog.component.ts
+ 24
+
+ Confirmation
+
+
+ Confirm
+
+ src/app/components/common/confirm-dialog/confirm-dialog.component.ts
+ 36
+
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.html
+ 26
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 981
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 441
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 481
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 519
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 557
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 619
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 752
+
+ Confirm
+
+
+ Documents:
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 9
+
+ Documents:
+
+
+ Use metadata from:
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 22
+
+ Use metadata from:
+
+
+ Regenerate all metadata
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 24
+
+ Regenerate all metadata
+
+
+ Try to include archive version in merge for non-PDF files
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 32
+
+ Try to include archive version in merge for non-PDF files
+
+
+ Delete original documents after successful merge
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 36
+
+ Delete original documents after successful merge
+
+
+ Note that only PDFs will be included.
+
+ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
+ 39
+
+ Note that only PDFs will be included.
+
+
+ Note that only PDFs will be rotated.
+
+ src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html
+ 25
+
+ Note that only PDFs will be rotated.
+
+
+ View
+
+ src/app/components/common/custom-field-display/custom-field-display.component.html
+ 22
+
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 34
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 20
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 75
+
+ View
+
+
+ Search fields
+
+ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
+ 10
+
+ Search fields
+
+
+ Create new field
+
+ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html
+ 21
+
+ Create new field
+
+
+ Saved field "".
+
+ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts
+ 130
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 85
+
+ Saved field "".
+
+
+ Error saving field.
+
+ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts
+ 139
+
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 94
+
+ Error saving field.
+
+
+ Today
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 47
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 52
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 76
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 128
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 152
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 111
+
+
+ src/app/components/common/input/date/date.component.html
+ 21
+
+ Today
+
+
+ Close
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 48
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 53
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 77
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 129
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 153
+
+
+ src/app/components/common/input/date/date.component.html
+ 22
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 107
+
+
+ src/app/guards/dirty-saved-view.guard.ts
+ 35
+
+ Close
+
+
+ True
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 55
+
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 95
+
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 101
+
+ True
+
+
+ False
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 56
+
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 96
+
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 102
+
+ False
+
+
+ Search docs...
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 70
+
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 118
+
+ Search docs...
+
+
+ Any
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 150
+
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 17
+
+ Any
+
+
+ All
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 152
+
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 15
+
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 16
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 16
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 27
+
+
+ src/app/components/document-list/document-list.component.html
+ 30
+
+ All
+
+
+ Not
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 155
+
+ Not
+
+
+ Add query
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 174
+
+ Add query
+
+
+ Add expression
+
+ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
+ 177
+
+ Add expression
+
+
+ Relative dates
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 25
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 101
+
+ Relative dates
+
+
+ From
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 44
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 120
+
+ From
+
+
+ To
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 68
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 144
+
+ To
+
+
+ Added
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 84
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 90
+
+
+ src/app/components/document-list/document-list.component.html
+ 278
+
+
+ src/app/data/document.ts
+ 38
+
+
+ src/app/data/document.ts
+ 93
+
+ Added
+
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
+
+ Within 1 week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 81
+
+ Within 1 week
+
+
+ Within 1 month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 86
+
+ Within 1 month
+
+
+ Within 3 months
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 91
+
+ Within 3 months
+
+
+ Within 1 year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 96
+
+ Within 1 year
+
+
+ This year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 101
+
+ This year
+
+
+ This month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 106
+
+ This month
+
+
+ Yesterday
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 116
+
+
+ src/app/pipes/custom-date.pipe.ts
+ 29
+
+ Yesterday
+
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
+
+ Matching algorithm
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 13
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 14
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 64
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 18
+
+ Matching algorithm
+
+
+ Matching pattern
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 15
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 16
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 66
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 20
+
+ Matching pattern
+
+
+ Case insensitive
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+ 16
+
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html
+ 17
+
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 67
+
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 21
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 173
+
+ Case insensitive
+
+
+ Create new correspondent
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts
+ 43
+
+ Create new correspondent
+
+
+ Edit correspondent
+
+ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts
+ 47
+
+ Edit correspondent
+
+
+ Data type
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 12
+
+ Data type
+
+
+ Data type cannot be changed after a field is created
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 14
+
+ Data type cannot be changed after a field is created
+
+
+ Add option
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 20
+
+ Add option
+
+
+ Default Currency
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 44
+
+ Default Currency
+
+
+ 3-character currency code
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 44
+
+ 3-character currency code
+
+
+ Use locale
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+ 44
+
+ Use locale
+
+
+ Create new custom field
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
+ 118
+
+ Create new custom field
+
+
+ Edit custom field
+
+ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
+ 122
+
+ Edit custom field
+
+
+ Create new document type
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts
+ 43
+
+ Create new document type
+
+
+ Edit document type
+
+ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts
+ 47
+
+ Edit document type
+
+
+ Create new item
+
+ src/app/components/common/edit-dialog/edit-dialog.component.ts
+ 121
+
+ Create new item
+
+
+ Edit item
+
+ src/app/components/common/edit-dialog/edit-dialog.component.ts
+ 125
+
+ Edit item
+
+
+ Create new user group
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts
+ 36
+
+ Create new user group
+
+
+ Edit user group
+
+ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts
+ 40
+
+ Edit user group
+
+
+ IMAP Server
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 14
+
+ IMAP Server
+
+
+ IMAP Port
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 15
+
+ IMAP Port
+
+
+ IMAP Security
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 16
+
+ IMAP Security
+
+
+ Password
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 20
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 15
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 20
+
+ Password
+
+
+ Password is token
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 21
+
+ Password is token
+
+
+ Check if the password above is a token used for authentication
+
+ 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
+
+
+ Character Set
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 22
+
+ Character Set
+
+
+ Test
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html
+ 37
+
+ Test
+
+
+ No encryption
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 20
+
+ No encryption
+
+
+ SSL
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 21
+
+ SSL
+
+
+ STARTTLS
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 22
+
+ STARTTLS
+
+
+ Create new mail account
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 54
+
+ Create new mail account
+
+
+ Edit mail account
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 58
+
+ Edit mail account
+
+
+ Successfully connected to the mail server
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 103
+
+ Successfully connected to the mail server
+
+
+ Unable to connect to the mail server
+
+ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts
+ 104
+
+ Unable to connect to the mail server
+
+
+ Account
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 16
+
+
+ src/app/components/manage/mail/mail.component.html
+ 113
+
+ Account
+
+
+ Order
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 19
+
+ Order
+
+
+ Enabled
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 22
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 19
+
+
+ src/app/components/manage/mail/mail.component.html
+ 137
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 41
+
+ Enabled
+
+
+ Paperless will only process mails that match all of the criteria specified below.
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 27
+
+ Paperless will only process mails that match all of the criteria specified below.
+
+
+ Folder
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 29
+
+ Folder
+
+
+ Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server.
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 29
+
+ Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server.
+
+
+ Maximum age (days)
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 30
+
+ Maximum age (days)
+
+
+ Filter from
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 33
+
+ Filter from
+
+
+ Filter to
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 34
+
+ Filter to
+
+
+ Filter subject
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 35
+
+ Filter subject
+
+
+ Filter body
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 36
+
+ Filter body
+
+
+ Consumption scope
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 42
+
+ Consumption scope
+
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 42
+
+ See docs for .eml processing requirements
+
+
+ Attachment type
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 43
+
+ Attachment type
+
+
+ PDF layout
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 44
+
+ PDF layout
+
+
+ Include only files matching
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 47
+
+ Include only files matching
+
+
+ Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 47
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 48
+
+ Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
+
+
+ Exclude files matching
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 48
+
+ Exclude files matching
+
+
+ Action
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 54
+
+ Action
+
+
+ Only performed if the mail is processed.
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 54
+
+ Only performed if the mail is processed.
+
+
+ Action parameter
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 56
+
+ Action parameter
+
+
+ Assign title from
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 58
+
+ Assign title from
+
+
+ Assign owner from rule
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 59
+
+ Assign owner from rule
+
+
+ Assign document type
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 63
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 265
+
+ Assign document type
+
+
+ Assign correspondent from
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 64
+
+ Assign correspondent from
+
+
+ Assign correspondent
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 66
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 266
+
+ Assign correspondent
+
+
+ Error
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 73
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 113
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 186
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 220
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 254
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 264
+
+
+ src/app/components/common/toast/toast.component.html
+ 30
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 36
+
+ Error
+
+
+ Only process attachments
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 38
+
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 49
+
+ Only process attachments
+
+
+ Process all files, including 'inline' attachments
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 42
+
+ Process all files, including 'inline' attachments
+
+
+ Process message as .eml
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 53
+
+ Process message as .eml
+
+
+ Process message as .eml and attachments separately
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 57
+
+ Process message as .eml and attachments separately
+
+
+ System default
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 64
+
+ System default
+
+
+ Text, then HTML
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 68
+
+ Text, then HTML
+
+
+ HTML, then text
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 72
+
+ HTML, then text
+
+
+ HTML only
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 76
+
+ HTML only
+
+
+ Text only
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 80
+
+ Text only
+
+
+ Move to specified folder
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 91
+
+ Move to specified folder
+
+
+ Mark as read, don't process read mails
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 95
+
+ Mark as read, don't process read mails
+
+
+ Flag the mail, don't process flagged mails
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 99
+
+ Flag the mail, don't process flagged mails
+
+
+ Tag the mail with specified tag, don't process tagged mails
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 103
+
+ Tag the mail with specified tag, don't process tagged mails
+
+
+ Use subject as title
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 110
+
+ Use subject as title
+
+
+ Use attachment filename as title
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 114
+
+ Use attachment filename as title
+
+
+ Do not assign title from this rule
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 118
+
+ Do not assign title from this rule
+
+
+ Do not assign a correspondent
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 125
+
+ Do not assign a correspondent
+
+
+ Use mail address
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 129
+
+ Use mail address
+
+
+ Use name (or mail address if not available)
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 133
+
+ Use name (or mail address if not available)
+
+
+ Use correspondent selected below
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 137
+
+ Use correspondent selected below
+
+
+ Create new mail rule
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 191
+
+ Create new mail rule
+
+
+ Edit mail rule
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 195
+
+ Edit mail rule
+
+
+ Path
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 13
+
+
+ src/app/components/manage/storage-path-list/storage-path-list.component.ts
+ 51
+
+ Path
+
+
+ See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>.
+
+ 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
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 18
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 309
+
+ Preview
+
+
+ Path test failed
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 30
+
+ Path test failed
+
+
+ No document selected
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 32
+
+ No document selected
+
+
+ Search for a document
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 38
+
+ Search for a document
+
+
+ No documents found
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+ 39
+
+
+ src/app/components/common/input/document-link/document-link.component.ts
+ 72
+
+ No documents found
+
+
+ Create new storage path
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts
+ 82
+
+ Create new storage path
+
+
+ Edit storage path
+
+ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts
+ 86
+
+ Edit storage path
+
+
+ Color
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 13
+
+
+ src/app/components/manage/tag-list/tag-list.component.ts
+ 51
+
+ Color
+
+
+ Parent
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 15
+
+ Parent
+
+
+ Inbox tag
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 17
+
+ Inbox tag
+
+
+ Inbox tags are automatically assigned to all consumed documents.
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+ 17
+
+ Inbox tags are automatically assigned to all consumed documents.
+
+
+ Create new tag
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts
+ 51
+
+ Create new tag
+
+
+ Edit tag
+
+ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts
+ 55
+
+ Edit tag
+
+
+ Email
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 14
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 136
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 10
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 92
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 101
+
+ Email
+
+
+ First name
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 16
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 30
+
+ First name
+
+
+ Last name
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 17
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 31
+
+ Last name
+
+
+ Active
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 22
+
+ Active
+
+
+ Admin
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 26
+
+ Admin
+
+
+ Access logs, Django backend
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 26
+
+ Access logs, Django backend
+
+
+ Superuser
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 30
+
+ Superuser
+
+
+ (Grants all permissions and can view objects)
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 30
+
+ (Grants all permissions and can view objects)
+
+
+ Two-factor Authentication
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 37
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 103
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 137
+
+ Two-factor Authentication
+
+
+ Disable Two-factor Authentication
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 39
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html
+ 41
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 168
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 170
+
+ Disable Two-factor Authentication
+
+
+ Create new user account
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
+ 72
+
+ Create new user account
+
+
+ Edit user account
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
+ 76
+
+ Edit user account
+
+
+ Totp deactivated
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
+ 132
+
+ Totp deactivated
+
+
+ Totp deactivation failed
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
+ 135
+
+
+ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
+ 140
+
+ Totp deactivation failed
+
+
+ Sort order
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 16
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 18
+
+ Sort order
+
+
+ Triggers
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 25
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 20
+
+ Triggers
+
+
+ Trigger Workflow On:
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 31
+
+ Trigger Workflow On:
+
+
+ Add Trigger
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 33
+
+ Add Trigger
+
+
+ Apply Actions:
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 73
+
+ Apply Actions:
+
+
+ Add Action
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 75
+
+ Add Action
+
+
+ Trigger type
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 123
+
+ Trigger type
+
+
+ Set scheduled trigger offset and which date field to use.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 125
+
+ Set scheduled trigger offset and which date field to use.
+
+
+ Offset days
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 130
+
+ Offset days
+
+
+ Positive values will trigger after the date, negative values before.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 134
+
+ Positive values will trigger after the date, negative values before.
+
+
+ Relative to
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 139
+
+ Relative to
+
+
+ Custom field
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 143
+
+ Custom field
+
+
+ Custom field to use for date.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 143
+
+ Custom field to use for date.
+
+
+ Recurring
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 149
+
+ Recurring
+
+
+ Trigger is recurring.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 149
+
+ Trigger is recurring.
+
+
+ Recurring interval days
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 153
+
+ Recurring interval days
+
+
+ Repeat the trigger every n days.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 153
+
+ Repeat the trigger every n days.
+
+
+ Trigger for documents that match all filters specified below.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 158
+
+ Trigger for documents that match all filters specified below.
+
+
+ Filter filename
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 161
+
+ Filter filename
+
+
+ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 161
+
+ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
+
+
+ Filter sources
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 163
+
+ Filter sources
+
+
+ Filter path
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 164
+
+ Filter path
+
+
+ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 164
+
+ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+
+
+ Filter mail rule
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 165
+
+ Filter mail rule
+
+
+ Apply to documents consumed via this mail rule.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 165
+
+ Apply to documents consumed via this mail rule.
+
+
+ Content matching algorithm
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 168
+
+ Content matching algorithm
+
+
+ Content matching pattern
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 170
+
+ Content matching pattern
+
+
+ Advanced Filters
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 183
+
+ Advanced Filters
+
+
+ Add filter
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 190
+
+ Add filter
+
+
+ No advanced workflow filters defined.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 195
+
+ No advanced workflow filters defined.
+
+
+ Complete the custom field query configuration.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 224,226
+
+ Complete the custom field query configuration.
+
+
+ Action type
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 258
+
+ Action type
+
+
+ Assign title
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 263
+
+ Assign title
+
+
+ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 263
+
+ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
+
+
+ Assign tags
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 264
+
+ Assign tags
+
+
+ Assign storage path
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 267
+
+ Assign storage path
+
+
+ Assign custom fields
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 268
+
+ Assign custom fields
+
+
+ Assign owner
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 272
+
+ Assign owner
+
+
+ Assign view permissions
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 274
+
+ Assign view permissions
+
+
+ Assign edit permissions
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 293
+
+ Assign edit permissions
+
+
+ Remove tags
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 320
+
+ Remove tags
+
+
+ Remove all
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 321
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 327
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 333
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 339
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 345
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 352
+
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 358
+
+ Remove all
+
+
+ Remove correspondents
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 326
+
+ Remove correspondents
+
+
+ Remove document types
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 332
+
+ Remove document types
+
+
+ Remove storage paths
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 338
+
+ Remove storage paths
+
+
+ Remove custom fields
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 344
+
+ Remove custom fields
+
+
+ Remove owners
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 351
+
+ Remove owners
+
+
+ Remove permissions
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 357
+
+ Remove permissions
+
+
+ View permissions
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 360
+
+ View permissions
+
+
+ Edit permissions
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 379
+
+ Edit permissions
+
+
+ Email subject
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 407
+
+ Email subject
+
+
+ Email body
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 408
+
+ Email body
+
+
+ Email recipients
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 409
+
+ Email recipients
+
+
+ Attach document
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 410
+
+ Attach document
+
+
+ Webhook url
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 418
+
+ Webhook url
+
+
+ Use parameters for webhook body
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 420
+
+ Use parameters for webhook body
+
+
+ Send webhook payload as JSON
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 421
+
+ Send webhook payload as JSON
+
+
+ Webhook params
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 424
+
+ Webhook params
+
+
+ Webhook body
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 426
+
+ Webhook body
+
+
+ Webhook headers
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 428
+
+ Webhook headers
+
+
+ Include document
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
+ 429
+
+ Include document
+
+
+ Consume Folder
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 71
+
+ Consume Folder
+
+
+ API Upload
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 75
+
+ API Upload
+
+
+ Mail Fetch
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 79
+
+ Mail Fetch
+
+
+ Web UI
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 83
+
+ Web UI
+
+
+ Modified
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 98
+
+
+ src/app/data/document.ts
+ 94
+
+ Modified
+
+
+ Custom Field
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 102
+
+ Custom Field
+
+
+ Consumption Started
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 109
+
+ Consumption Started
+
+
+ Document Added
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 113
+
+ Document Added
+
+
+ Document Updated
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 117
+
+ Document Updated
+
+
+ Scheduled
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 121
+
+ Scheduled
+
+
+ Assignment
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 128
+
+ Assignment
+
+
+ Removal
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 132
+
+ Removal
+
+
+ Webhook
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 140
+
+ Webhook
+
+
+ Has any of these tags
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 203
+
+ Has any of these tags
+
+
+ Has all of these tags
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 210
+
+ Has all of these tags
+
+
+ Does not have these tags
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 217
+
+ Does not have these tags
+
+
+ Has correspondent
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 224
+
+ Has correspondent
+
+
+ Does not have correspondents
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 232
+
+ Does not have correspondents
+
+
+ Has document type
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 240
+
+ Has document type
+
+
+ Does not have document types
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 248
+
+ Does not have document types
+
+
+ Has storage path
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 256
+
+ Has storage path
+
+
+ Does not have storage paths
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 264
+
+ Does not have storage paths
+
+
+ Matches custom field query
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 272
+
+ Matches custom field query
+
+
+ Create new workflow
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 474
+
+ Create new workflow
+
+
+ Edit workflow
+
+ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
+ 478
+
+ Edit workflow
+
+
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 2,6
+
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+
+
+ Email address(es)
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 11
+
+ Email address(es)
+
+
+ Subject
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 15
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 32
+
+ Subject
+
+
+ Message
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 19
+
+ Message
+
+
+ Use archive version
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 27
+
+ Use archive version
+
+
+ Send email
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 33
+
+ Send email
+
+
+ Some email servers may reject messages with large attachments.
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.html
+ 37
+
+ Some email servers may reject messages with large attachments.
+
+
+ Email sent
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.ts
+ 63
+
+ Email sent
+
+
+ Error emailing documents
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.ts
+ 69
+
+ Error emailing documents
+
+
+ Error emailing document
+
+ src/app/components/common/email-document-dialog/email-document-dialog.component.ts
+ 70
+
+ Error emailing document
+
+
+ Include
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 25
+
+ Include
+
+
+ Exclude
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 27
+
+ Exclude
+
+
+ Create
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 58
+
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 65
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 13
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 13
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 13
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 13
+
+ Create
+
+
+ Apply
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 64
+
+ Apply
+
+
+ Click again to exclude items.
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+ 77
+
+ Click again to exclude items.
+
+
+ Not assigned
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
+ 95
+
+ Filter drop down element to filter for documents with no correspondent/type/tag assigned
+ Not assigned
+
+
+ Open filter
+
+ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
+ 767
+
+ Open filter
+
+
+ Keyboard shortcuts
+
+ src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts
+ 24
+
+ Keyboard shortcuts
+
+
+ Remove
+
+ src/app/components/common/input/check/check.component.html
+ 8
+
+
+ src/app/components/common/input/date/date.component.html
+ 7
+
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 12
+
+
+ src/app/components/common/input/file/file.component.html
+ 9
+
+
+ src/app/components/common/input/file/file.component.html
+ 21
+
+
+ src/app/components/common/input/monetary/monetary.component.html
+ 9
+
+
+ src/app/components/common/input/number/number.component.html
+ 9
+
+
+ src/app/components/common/input/select/select.component.html
+ 10
+
+
+ src/app/components/common/input/switch/switch.component.html
+ 13
+
+
+ src/app/components/common/input/text/text.component.html
+ 9
+
+
+ src/app/components/common/input/textarea/textarea.component.html
+ 9
+
+
+ src/app/components/common/input/url/url.component.html
+ 7
+
+ Remove
+
+
+ Invalid date.
+
+ src/app/components/common/input/date/date.component.html
+ 31
+
+ Invalid date.
+
+
+ Suggestions:
+
+ src/app/components/common/input/date/date.component.html
+ 37
+
+
+ src/app/components/common/input/select/select.component.html
+ 61
+
+
+ src/app/components/common/input/tags/tags.component.html
+ 65
+
+ Suggestions:
+
+
+ Filter documents with this
+
+ src/app/components/common/input/date/date.component.ts
+ 120
+
+
+ src/app/components/common/input/select/select.component.ts
+ 172
+
+ Filter documents with this
+
+
+ Remove link
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 43
+
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 50
+
+ Remove link
+
+
+ Open link
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 46
+
+
+ src/app/components/common/input/url/url.component.html
+ 14
+
+ Open link
+
+
+ Not found
+
+ src/app/components/common/input/document-link/document-link.component.html
+ 51
+
+ Not found
+
+
+ Search for documents
+
+ src/app/components/common/input/document-link/document-link.component.ts
+ 81
+
+ Search for documents
+
+
+ Selected items
+
+ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts
+ 25
+
+ Selected items
+
+
+ No items selected
+
+ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts
+ 31
+
+ No items selected
+
+
+ Add
+
+ src/app/components/common/input/entries/entries.component.html
+ 8
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 17
+
+ Add
+
+
+ Upload
+
+ src/app/components/common/input/file/file.component.html
+ 15
+
+ Upload
+
+
+ Show password
+
+ src/app/components/common/input/password/password.component.html
+ 6
+
+ Show password
+
+
+ Edit Permissions
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 9
+
+ Edit Permissions
+
+
+ Owner:
+
+ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html
+ 26
+
+ Owner:
+
+
+ Add item
+
+ src/app/components/common/input/select/select.component.html
+ 25
+
+ Used for both types, correspondents, storage paths
+ Add item
+
+
+ Private
+
+ src/app/components/common/input/select/select.component.ts
+ 71
+
+
+ src/app/components/common/tag/tag.component.html
+ 20
+
+
+ src/app/components/common/tag/tag.component.html
+ 23
+
+
+ src/app/pipes/object-name.pipe.ts
+ 40
+
+
+ src/app/pipes/object-name.pipe.ts
+ 46
+
+ Private
+
+
+ No items found
+
+ src/app/components/common/input/select/select.component.ts
+ 106
+
+ No items found
+
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+ src/app/components/common/input/switch/switch.component.html
+ 39
+
+ Note: value has not yet been set and will not apply until explicitly changed
+
+
+ Add tag
+
+ src/app/components/common/input/tags/tags.component.html
+ 17
+
+ Add tag
+
+
+ Remove tag
+
+ src/app/components/common/input/tags/tags.component.html
+ 23
+
+ Remove tag
+
+
+ Filter documents with these Tags
+
+ src/app/components/common/input/tags/tags.component.html
+ 55
+
+ Filter documents with these Tags
+
+
+ Read more
+
+ src/app/components/common/page-header/page-header.component.html
+ 15
+
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 9
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 7
+
+ Read more
+
+
+ Select all pages
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 9
+
+ Select all pages
+
+
+ Deselect all pages
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 12
+
+ Deselect all pages
+
+
+ Rotate selected pages counter-clockwise
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 17
+
+ Rotate selected pages counter-clockwise
+
+
+ Rotate selected pages clockwise
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 20
+
+ Rotate selected pages clockwise
+
+
+ Delete selected pages
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 23
+
+ Delete selected pages
+
+
+ Rotate page counter-clockwise
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 33
+
+ Rotate page counter-clockwise
+
+
+ Rotate page clockwise
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 36
+
+ Rotate page clockwise
+
+
+ Delete page
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 41
+
+ Delete page
+
+
+ Add / remove document split here
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 44
+
+ Add / remove document split here
+
+
+ Split here
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 70
+
+ Split here
+
+
+ Create new document(s)
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 82
+
+ Create new document(s)
+
+
+ Update existing document
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 87
+
+ Update existing document
+
+
+ Copy metadata
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 94
+
+ Copy metadata
+
+
+ Delete original
+
+ src/app/components/common/pdf-editor/pdf-editor.component.html
+ 98
+
+ Delete original
+
+
+ Merge with existing permissions
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.html
+ 14
+
+ Merge with existing permissions
+
+
+ Set permissions
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.ts
+ 41
+
+ Set permissions
+
+
+ Edit permissions for
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.ts
+ 46
+
+ Edit permissions for
+
+
+ Existing owner, user and group permissions will be merged with these settings.
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.ts
+ 87
+
+ Existing owner, user and group permissions will be merged with these settings.
+
+
+ Any and all existing owner, user and group permissions will be replaced.
+
+ src/app/components/common/permissions-dialog/permissions-dialog.component.ts
+ 88
+
+ Any and all existing owner, user and group permissions will be replaced.
+
+
+ My documents
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 26
+
+ My documents
+
+
+ Shared with me
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 36
+
+ Shared with me
+
+
+ Shared by me
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 46
+
+ Shared by me
+
+
+ Unowned
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 56
+
+ Unowned
+
+
+ Hide unowned
+
+ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html
+ 86
+
+ Hide unowned
+
+
+ Global permissions define what areas of the app and API endpoints users can access.
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 8
+
+ Global permissions define what areas of the app and API endpoints users can access.
+
+
+ Type
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 15
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 56
+
+ Type
+
+
+ Change
+
+ src/app/components/common/permissions-select/permissions-select.component.html
+ 18
+
+ Change
+
+
+ Inherited from group
+
+ src/app/components/common/permissions-select/permissions-select.component.ts
+ 78
+
+ Inherited from group
+
+
+ Error loading preview
+
+ src/app/components/common/preview-popup/preview-popup.component.html
+ 10
+
+ Error loading preview
+
+
+ Open preview
+
+ src/app/components/common/preview-popup/preview-popup.component.ts
+ 52
+
+ Open preview
+
+
+ Edit Profile
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 3
+
+ Edit Profile
+
+
+ Confirm Email
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 15
+
+ Confirm Email
+
+
+ Confirm Password
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 25
+
+ Confirm Password
+
+
+ API Auth Token
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 33
+
+ API Auth Token
+
+
+ Copy
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 37
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 44
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 155
+
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 28
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 284
+
+
+ src/app/components/manage/mail/mail.component.html
+ 156
+
+
+ src/app/components/manage/mail/mail.component.html
+ 174
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 56
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 71
+
+ Copy
+
+
+ Regenerate auth token
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 47
+
+ Regenerate auth token
+
+
+ Copied!
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 54
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 162
+
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 39
+
+ Copied!
+
+
+ Warning: changing the token cannot be undone
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 56
+
+ Warning: changing the token cannot be undone
+
+
+ Connected social accounts
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 62
+
+ Connected social accounts
+
+
+ Set a password before disconnecting social account.
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 66
+
+ Set a password before disconnecting social account.
+
+
+ Disconnect
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 72
+
+ Disconnect
+
+
+ Disconnect social account
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 74
+
+ Disconnect social account
+
+
+ Warning: disconnecting social accounts cannot be undone
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 84
+
+ Warning: disconnecting social accounts cannot be undone
+
+
+ Connect new social account
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 89
+
+ Connect new social account
+
+
+ Scan the QR code with your authenticator app and then enter the code below
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 114
+
+ Scan the QR code with your authenticator app and then enter the code below
+
+
+ Authenticator secret
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 117
+
+ Authenticator secret
+
+
+ You can store this secret and use it to reinstall your authenticator app at a later time.
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 118
+
+ You can store this secret and use it to reinstall your authenticator app at a later time.
+
+
+ Code
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 121
+
+ Code
+
+
+ Recovery codes will not be shown again, make sure to save them.
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 140
+
+ Recovery codes will not be shown again, make sure to save them.
+
+
+ Copy codes
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
+ 158
+
+ Copy codes
+
+
+ Emails must match
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 143
+
+ Emails must match
+
+
+ Passwords must match
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 171
+
+ Passwords must match
+
+
+ Profile updated successfully
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 193
+
+ Profile updated successfully
+
+
+ Error saving profile
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 207
+
+ Error saving profile
+
+
+ Error generating auth token
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 225
+
+ Error generating auth token
+
+
+ Error disconnecting social account
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 250
+
+ Error disconnecting social account
+
+
+ Error fetching TOTP settings
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 269
+
+ Error fetching TOTP settings
+
+
+ TOTP activated successfully
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 290
+
+ TOTP activated successfully
+
+
+ Error activating TOTP
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 292
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 298
+
+ Error activating TOTP
+
+
+ TOTP deactivated successfully
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 314
+
+ TOTP deactivated successfully
+
+
+ Error deactivating TOTP
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 316
+
+
+ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
+ 321
+
+ Error deactivating TOTP
+
+
+ No existing links
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 8,10
+
+ No existing links
+
+
+ Share
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 32
+
+ Share
+
+
+ Share archive version
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 48
+
+ Share archive version
+
+
+ Expires
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.html
+ 52
+
+ Expires
+
+
+ 1 day
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 25
+
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 102
+
+ 1 day
+
+
+ 7 days
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 26
+
+ 7 days
+
+
+ 30 days
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 27
+
+ 30 days
+
+
+ Never
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 28
+
+ Never
+
+
+ Share Links
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 32
+
+
+ src/app/components/document-detail/document-detail.component.html
+ 88
+
+ Share Links
+
+
+ Error retrieving links
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 83
+
+ Error retrieving links
+
+
+ days
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 102
+
+ days
+
+
+ Error deleting link
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 131
+
+ Error deleting link
+
+
+ Error creating link
+
+ src/app/components/common/share-links-dialog/share-links-dialog.component.ts
+ 159
+
+ Error creating link
+
+
+ Environment
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 18
+
+ Environment
+
+
+ Paperless-ngx Version
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 22
+
+ Paperless-ngx Version
+
+
+ Install Type
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 35
+
+ Install Type
+
+
+ Server OS
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 37
+
+ Server OS
+
+
+ Media Storage
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 39
+
+ Media Storage
+
+
+ available
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 42
+
+ available
+
+
+ total
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 42
+
+ total
+
+
+ Database
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 52
+
+ Database
+
+
+ Status
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 58
+
+
+ src/app/components/common/toast/toast.component.html
+ 28
+
+
+ src/app/components/manage/mail/mail.component.html
+ 114
+
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 35
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 19
+
+ Status
+
+
+ Migration Status
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 76
+
+ Migration Status
+
+
+ Up to date
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 80
+
+ Up to date
+
+
+ Latest Migration
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 85
+
+ Latest Migration
+
+
+ Pending Migrations
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 87
+
+ Pending Migrations
+
+
+ Tasks Queue
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 105
+
+ Tasks Queue
+
+
+ Redis Status
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 109
+
+ Redis Status
+
+
+ Celery Status
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 127
+
+ Celery Status
+
+
+ Health
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 153
+
+ Health
+
+
+ Search Index
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 157
+
+ Search Index
+
+
+ Run Task
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 177
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 211
+
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 245
+
+ Run Task
+
+
+ Last Updated
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 184
+
+ Last Updated
+
+
+ Classifier
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 189
+
+ Classifier
+
+
+ Last Trained
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 218
+
+ Last Trained
+
+
+ Sanity Checker
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 223
+
+ Sanity Checker
+
+
+ Last Run
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 252
+
+ Last Run
+
+
+ WebSocket Connection
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 257
+
+ WebSocket Connection
+
+
+ OK
+
+ src/app/components/common/system-status-dialog/system-status-dialog.component.html
+ 261
+
+ OK
+
+
+ Copy Raw Error
+
+ src/app/components/common/toast/toast.component.html
+ 43
+
+ Copy Raw Error
+
+
+ Hint: saved views can be created from the documents list
+
+ src/app/components/dashboard/dashboard.component.html
+ 42
+
+ Hint: saved views can be created from the documents list
+
+
+ Hello , welcome to
+
+ src/app/components/dashboard/dashboard.component.ts
+ 61
+
+ Hello , welcome to
+
+
+ Welcome to
+
+ src/app/components/dashboard/dashboard.component.ts
+ 63
+
+ Welcome to
+
+
+ Dashboard updated
+
+ src/app/components/dashboard/dashboard.component.ts
+ 94
+
+ Dashboard updated
+
+
+ Error updating dashboard
+
+ src/app/components/dashboard/dashboard.component.ts
+ 97
+
+ Error updating dashboard
+
+
+ Show all
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 10
+
+ Show all
+
+
+ Filter by correspondent
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 54
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 25
+
+
+ src/app/components/document-list/document-list.component.html
+ 323
+
+ Filter by correspondent
+
+
+ Filter by document type
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 64
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 96
+
+
+ src/app/components/document-list/document-list.component.html
+ 363
+
+ Filter by document type
+
+
+ Filter by storage path
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 69
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 102
+
+
+ src/app/components/document-list/document-list.component.html
+ 370
+
+ Filter by storage path
+
+
+ Filter by owner
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 74
+
+ Filter by owner
+
+
+ Yes
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 84
+
+
+ src/app/components/document-list/document-list.component.html
+ 391
+
+ Yes
+
+
+ No
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 84
+
+
+ src/app/components/document-list/document-list.component.html
+ 391
+
+ No
+
+
+ No documents
+
+ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
+ 149
+
+ No documents
+
+
+ Statistics
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 1
+
+ Statistics
+
+
+ Go to inbox
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 28
+
+ Go to inbox
+
+
+ Documents in inbox
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 29
+
+ Documents in inbox
+
+
+ Go to documents
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 33
+
+ Go to documents
+
+
+ Total documents
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 34
+
+ Total documents
+
+
+ Total characters
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 38
+
+ Total characters
+
+
+ Current ASN
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
+ 43
+
+ Current ASN
+
+
+ Other
+
+ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts
+ 79
+
+ Other
+
+
+ Upload documents
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
+ 6
+
+ Upload documents
+
+
+ or drop files anywhere
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
+ 7
+
+ or drop files anywhere
+
+
+ Dismiss completed
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
+ 23
+
+ This button dismisses all status messages about processed documents on the dashboard (failed and successful)
+ Dismiss completed
+
+
+ Processing:
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts
+ 57
+
+ Processing:
+
+
+ Failed:
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts
+ 60
+
+ Failed:
+
+
+ Added:
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts
+ 63
+
+ Added:
+
+
+ ,
+
+ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts
+ 66
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 386
+
+ this string is used to separate processing, failed and added on the file upload widget
+ ,
+
+
+ Paperless-ngx is running!
+
+ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
+ 2
+
+ Paperless-ngx is running!
+
+
+ You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.
+
+ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
+ 3
+
+ You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.
+
+
+ More detail on how to use and configure Paperless-ngx is always available in the documentation.
+
+ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
+ 4
+
+ More detail on how to use and configure Paperless-ngx is always available in the documentation.
+
+
+ Thanks for being a part of the Paperless-ngx community!
+
+ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
+ 7
+
+ Thanks for being a part of the Paperless-ngx community!
+
+
+ Start the tour
+
+ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
+ 8
+
+ Start the tour
+
+
+ Searching document with asn
+
+ src/app/components/document-asn/document-asn.component.html
+ 1
+
+ Searching document with asn
+
+
+ Page
+
+ src/app/components/document-detail/document-detail.component.html
+ 5
+
+
+ src/app/components/document-list/document-list.component.html
+ 27
+
+ Page
+
+
+ of
+
+ src/app/components/document-detail/document-detail.component.html
+ 7,8
+
+ of
+
+
+ -
+
+ src/app/components/document-detail/document-detail.component.html
+ 11
+
+ -
+
+
+ +
+
+ src/app/components/document-detail/document-detail.component.html
+ 19
+
+ +
+
+
+ Download original
+
+ src/app/components/document-detail/document-detail.component.html
+ 41
+
+ Download original
+
+
+ Reprocess
+
+ src/app/components/document-detail/document-detail.component.html
+ 54
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 91
+
+ Reprocess
+
+
+ Print
+
+ src/app/components/document-detail/document-detail.component.html
+ 58
+
+ Print
+
+
+ More like this
+
+ src/app/components/document-detail/document-detail.component.html
+ 62
+
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 69
+
+ More like this
+
+
+ PDF Editor
+
+ src/app/components/document-detail/document-detail.component.html
+ 66
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1392
+
+ PDF Editor
+
+
+ Send
+
+ src/app/components/document-detail/document-detail.component.html
+ 84
+
+ Send
+
+
+ Previous
+
+ src/app/components/document-detail/document-detail.component.html
+ 110
+
+ Previous
+
+
+ Details
+
+ src/app/components/document-detail/document-detail.component.html
+ 123
+
+ Details
+
+
+ Title
+
+ src/app/components/document-detail/document-detail.component.html
+ 126
+
+
+ src/app/components/document-list/document-list.component.html
+ 221
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 195
+
+
+ src/app/data/document.ts
+ 30
+
+
+ src/app/data/document.ts
+ 90
+
+ Title
+
+
+ Archive serial number
+
+ src/app/components/document-detail/document-detail.component.html
+ 127
+
+ Archive serial number
+
+
+ Date created
+
+ src/app/components/document-detail/document-detail.component.html
+ 128
+
+ Date created
+
+
+ Correspondent
+
+ src/app/components/document-detail/document-detail.component.html
+ 130
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 19
+
+
+ src/app/components/document-list/document-list.component.html
+ 211
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 50
+
+
+ src/app/data/document.ts
+ 46
+
+
+ src/app/data/document.ts
+ 89
+
+ Correspondent
+
+
+ Document type
+
+ src/app/components/document-detail/document-detail.component.html
+ 132
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 33
+
+
+ src/app/components/document-list/document-list.component.html
+ 251
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 61
+
+
+ src/app/data/document.ts
+ 50
+
+
+ src/app/data/document.ts
+ 91
+
+ Document type
+
+
+ Storage path
+
+ src/app/components/document-detail/document-detail.component.html
+ 134
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 47
+
+
+ src/app/components/document-list/document-list.component.html
+ 260
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 72
+
+
+ src/app/data/document.ts
+ 54
+
+ Storage path
+
+
+ Default
+
+ src/app/components/document-detail/document-detail.component.html
+ 135
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Default
+
+
+ Content
+
+ src/app/components/document-detail/document-detail.component.html
+ 239
+
+ Content
+
+
+ Metadata
+
+ src/app/components/document-detail/document-detail.component.html
+ 248
+
+
+ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts
+ 20
+
+ Metadata
+
+
+ Date modified
+
+ src/app/components/document-detail/document-detail.component.html
+ 255
+
+ Date modified
+
+
+ Date added
+
+ src/app/components/document-detail/document-detail.component.html
+ 259
+
+ Date added
+
+
+ Media filename
+
+ src/app/components/document-detail/document-detail.component.html
+ 263
+
+ Media filename
+
+
+ Original filename
+
+ src/app/components/document-detail/document-detail.component.html
+ 267
+
+ Original filename
+
+
+ Original MD5 checksum
+
+ src/app/components/document-detail/document-detail.component.html
+ 271
+
+ Original MD5 checksum
+
+
+ Original file size
+
+ src/app/components/document-detail/document-detail.component.html
+ 275
+
+ Original file size
+
+
+ Original mime type
+
+ src/app/components/document-detail/document-detail.component.html
+ 279
+
+ Original mime type
+
+
+ Archive MD5 checksum
+
+ src/app/components/document-detail/document-detail.component.html
+ 284
+
+ Archive MD5 checksum
+
+
+ Archive file size
+
+ src/app/components/document-detail/document-detail.component.html
+ 290
+
+ Archive file size
+
+
+ Original document metadata
+
+ src/app/components/document-detail/document-detail.component.html
+ 299
+
+ Original document metadata
+
+
+ Archived document metadata
+
+ src/app/components/document-detail/document-detail.component.html
+ 302
+
+ Archived document metadata
+
+
+ Notes
+
+ src/app/components/document-detail/document-detail.component.html
+ 321,324
+
+ Notes
+
+
+ History
+
+ src/app/components/document-detail/document-detail.component.html
+ 332
+
+ History
+
+
+ Save & next
+
+ src/app/components/document-detail/document-detail.component.html
+ 369
+
+ Save & next
+
+
+ Save & close
+
+ src/app/components/document-detail/document-detail.component.html
+ 372
+
+ Save & close
+
+
+ Document loading...
+
+ src/app/components/document-detail/document-detail.component.html
+ 382
+
+ Document loading...
+
+
+ Enter Password
+
+ src/app/components/document-detail/document-detail.component.html
+ 436
+
+ Enter Password
+
+
+ An error occurred loading content:
+
+ src/app/components/document-detail/document-detail.component.ts
+ 416,418
+
+ An error occurred loading content:
+
+
+ Document changes detected
+
+ src/app/components/document-detail/document-detail.component.ts
+ 450
+
+ Document changes detected
+
+
+ The version of this document in your browser session appears older than the existing version.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 451
+
+ The version of this document in your browser session appears older than the existing version.
+
+
+ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 452
+
+ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
+
+
+ Ok
+
+ src/app/components/document-detail/document-detail.component.ts
+ 454
+
+ Ok
+
+
+ Next document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 580
+
+ Next document
+
+
+ Previous document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 590
+
+ Previous document
+
+
+ Close document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 598
+
+
+ src/app/services/open-documents.service.ts
+ 130
+
+ Close document
+
+
+ Save document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 605
+
+ Save document
+
+
+ Save and close / next
+
+ src/app/components/document-detail/document-detail.component.ts
+ 614
+
+ Save and close / next
+
+
+ Error retrieving metadata
+
+ src/app/components/document-detail/document-detail.component.ts
+ 669
+
+ Error retrieving metadata
+
+
+ Error retrieving suggestions.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 698
+
+ Error retrieving suggestions.
+
+
+ Document "" saved successfully.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 870
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 894
+
+ Document "" saved successfully.
+
+
+ Error saving document ""
+
+ src/app/components/document-detail/document-detail.component.ts
+ 900
+
+ Error saving document ""
+
+
+ Error saving document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 950
+
+ Error saving document
+
+
+ Do you really want to move the document "" to the trash?
+
+ src/app/components/document-detail/document-detail.component.ts
+ 982
+
+ Do you really want to move the document "" to the trash?
+
+
+ Documents can be restored prior to permanent deletion.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 983
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 754
+
+ Documents can be restored prior to permanent deletion.
+
+
+ Move to trash
+
+ src/app/components/document-detail/document-detail.component.ts
+ 985
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 756
+
+ Move to trash
+
+
+ Error deleting document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1004
+
+ Error deleting document
+
+
+ Reprocess confirm
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1024
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 794
+
+ Reprocess confirm
+
+
+ This operation will permanently recreate the archive file for this document.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1025
+
+ This operation will permanently recreate the archive file for this document.
+
+
+ The archive file will be re-generated with the current settings.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1026
+
+ The archive file will be re-generated with the current settings.
+
+
+ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1036
+
+ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
+
+
+ Error executing operation
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1047
+
+ Error executing operation
+
+
+ Error downloading document
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1096
+
+ Error downloading document
+
+
+ Page Fit
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1173
+
+ Page Fit
+
+
+ PDF edit operation for "" will begin in the background.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1411
+
+ PDF edit operation for "" will begin in the background.
+
+
+ Error executing PDF edit operation
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1423
+
+ Error executing PDF edit operation
+
+
+ Print failed.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1460
+
+ Print failed.
+
+
+ Error loading document for printing.
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1472
+
+ Error loading document for printing.
+
+
+ An error occurred loading tiff:
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1537
+
+
+ src/app/components/document-detail/document-detail.component.ts
+ 1541
+
+ An error occurred loading tiff:
+
+
+ No entries found.
+
+ src/app/components/document-history/document-history.component.html
+ 10
+
+ No entries found.
+
+
+ Edit:
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 3
+
+ Edit:
+
+
+ Filter tags
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 6
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 40
+
+ Filter tags
+
+
+ Filter correspondents
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 20
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 51
+
+ Filter correspondents
+
+
+ Filter document types
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 34
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 62
+
+ Filter document types
+
+
+ Filter storage paths
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 48
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 73
+
+ Filter storage paths
+
+
+ Custom fields
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 61
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 84
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 203
+
+ Custom fields
+
+
+ Filter custom fields
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 62
+
+ Filter custom fields
+
+
+ Set values
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 70
+
+ Set values
+
+
+ Rotate
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 94
+
+ Rotate
+
+
+ Merge
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 97
+
+ Merge
+
+
+ Include:
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 123
+
+ Include:
+
+
+ Archived files
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 127
+
+ Archived files
+
+
+ Original files
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 131
+
+ Original files
+
+
+ Use formatted filename
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.html
+ 136
+
+ Use formatted filename
+
+
+ Error executing bulk operation
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 290
+
+ Error executing bulk operation
+
+
+ ""
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 378
+
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 384
+
+ ""
+
+
+ "" and ""
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 380
+
+ This is for messages like 'modify "tag1" and "tag2"'
+ "" and ""
+
+
+ and ""
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 388,390
+
+ this is for messages like 'modify "tag1", "tag2" and "tag3"'
+ and ""
+
+
+ Confirm tags assignment
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 405
+
+ Confirm tags assignment
+
+
+ This operation will add the tag "" to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 411
+
+ This operation will add the tag "" to selected document(s).
+
+
+ This operation will add the tags to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 416,418
+
+ This operation will add the tags to selected document(s).
+
+
+ This operation will remove the tag "" from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 424
+
+ This operation will remove the tag "" from selected document(s).
+
+
+ This operation will remove the tags from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 429,431
+
+ This operation will remove the tags from selected document(s).
+
+
+ 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
+ 433,437
+
+ This operation will add the tags and remove the tags on selected document(s).
+
+
+ Confirm correspondent assignment
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 474
+
+ Confirm correspondent assignment
+
+
+ This operation will assign the correspondent "" to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 476
+
+ This operation will assign the correspondent "" to selected document(s).
+
+
+ This operation will remove the correspondent from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 478
+
+ This operation will remove the correspondent from selected document(s).
+
+
+ Confirm document type assignment
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 512
+
+ Confirm document type assignment
+
+
+ This operation will assign the document type "" to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 514
+
+ This operation will assign the document type "" to selected document(s).
+
+
+ This operation will remove the document type from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 516
+
+ This operation will remove the document type from selected document(s).
+
+
+ Confirm storage path assignment
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 550
+
+ Confirm storage path assignment
+
+
+ This operation will assign the storage path "" to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 552
+
+ This operation will assign the storage path "" to selected document(s).
+
+
+ This operation will remove the storage path from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 554
+
+ This operation will remove the storage path from selected document(s).
+
+
+ Confirm custom field assignment
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 583
+
+ Confirm custom field assignment
+
+
+ This operation will assign the custom field "" to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 589
+
+ This operation will assign the custom field "" to selected document(s).
+
+
+ This operation will assign the custom fields to selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 594,596
+
+ This operation will assign the custom fields to selected document(s).
+
+
+ This operation will remove the custom field "" from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 602
+
+ This operation will remove the custom field "" from selected document(s).
+
+
+ This operation will remove the custom fields from selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 607,609
+
+ This operation will remove the custom fields from selected document(s).
+
+
+ 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
+ 611,615
+
+ This operation will assign the custom fields and remove the custom fields on selected document(s).
+
+
+ Move selected document(s) to the trash?
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 753
+
+ Move selected document(s) to the trash?
+
+
+ This operation will permanently recreate the archive files for selected document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 795
+
+ This operation will permanently recreate the archive files for selected document(s).
+
+
+ The archive files will be re-generated with the current settings.
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 796
+
+ The archive files will be re-generated with the current settings.
+
+
+ Rotate confirm
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 828
+
+ Rotate confirm
+
+
+ This operation will permanently rotate the original version of document(s).
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 829
+
+ This operation will permanently rotate the original version of document(s).
+
+
+ Merge confirm
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 848
+
+ Merge confirm
+
+
+ This operation will merge selected documents into a new document.
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 849
+
+ This operation will merge selected documents into a new document.
+
+
+ Merged document will be queued for consumption.
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 868
+
+ Merged document will be queued for consumption.
+
+
+ Custom fields updated.
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 892
+
+ Custom fields updated.
+
+
+ Error updating custom fields.
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 901
+
+ Error updating custom fields.
+
+
+ {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 3,7
+
+ {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
+
+
+ Select custom fields
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 13
+
+ Select custom fields
+
+
+ {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
+ remove custom fields from the selected documents.}}
+
+ src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
+ 73,78
+
+ {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
+ remove custom fields from the selected documents.}}
+
+
+ Filter by tag
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 36
+
+
+ src/app/components/document-list/document-list.component.html
+ 339
+
+ Filter by tag
+
+
+ View notes
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 91
+
+ View notes
+
+
+ Created:
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 115,116
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 76,77
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 91,92
+
+ Created:
+
+
+ Added:
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 116,117
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 77,78
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 92,93
+
+ Added:
+
+
+ Modified:
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 117,118
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 78,79
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 93,94
+
+ Modified:
+
+
+ {VAR_PLURAL, plural, =1 {1 page} other { pages}}
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 134
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 106
+
+ {VAR_PLURAL, plural, =1 {1 page} other { pages}}
+
+
+ Shared
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 144
+
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 125
+
+
+ src/app/data/document.ts
+ 66
+
+
+ src/app/pipes/username.pipe.ts
+ 35
+
+ Shared
+
+
+ Score:
+
+ src/app/components/document-list/document-card-large/document-card-large.component.html
+ 149
+
+ Score:
+
+
+ Toggle tag filter
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 20
+
+ Toggle tag filter
+
+
+ Toggle correspondent filter
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 43
+
+ Toggle correspondent filter
+
+
+ Toggle document type filter
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 59
+
+ Toggle document type filter
+
+
+ Toggle storage path filter
+
+ src/app/components/document-list/document-card-small/document-card-small.component.html
+ 66
+
+ Toggle storage path filter
+
+
+ Select
+
+ src/app/components/document-list/document-list.component.html
+ 5
+
+
+ src/app/data/custom-field.ts
+ 51
+
+ Select
+
+
+ Select none
+
+ src/app/components/document-list/document-list.component.html
+ 11
+
+ Select none
+
+
+ Select page
+
+ src/app/components/document-list/document-list.component.html
+ 12
+
+
+ src/app/components/document-list/document-list.component.ts
+ 315
+
+ Select page
+
+
+ Select all
+
+ src/app/components/document-list/document-list.component.html
+ 13
+
+
+ src/app/components/document-list/document-list.component.ts
+ 308
+
+ Select all
+
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
+
+ None
+
+ src/app/components/document-list/document-list.component.html
+ 23
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 120
+
+
+ src/app/data/matching-model.ts
+ 45
+
+ None
+
+
+ Sort
+
+ src/app/components/document-list/document-list.component.html
+ 68
+
+ Sort
+
+
+ Views
+
+ src/app/components/document-list/document-list.component.html
+ 94
+
+ Views
+
+
+ Save ""
+
+ src/app/components/document-list/document-list.component.html
+ 113
+
+ Save ""
+
+
+ Save as...
+
+ src/app/components/document-list/document-list.component.html
+ 116
+
+ Save as...
+
+
+ All saved views
+
+ src/app/components/document-list/document-list.component.html
+ 117
+
+ All saved views
+
+
+ {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
+
+ src/app/components/document-list/document-list.component.html
+ 137
+
+ {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
+
+
+ {VAR_PLURAL, plural, =1 {One document} other { documents}}
+
+ src/app/components/document-list/document-list.component.html
+ 141
+
+ {VAR_PLURAL, plural, =1 {One document} other { documents}}
+
+
+ (filtered)
+
+ src/app/components/document-list/document-list.component.html
+ 143
+
+ (filtered)
+
+
+ Reset filters
+
+ src/app/components/document-list/document-list.component.html
+ 148
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 107
+
+ Reset filters
+
+
+ Error while loading documents
+
+ src/app/components/document-list/document-list.component.html
+ 169
+
+ Error while loading documents
+
+
+ Sort by ASN
+
+ src/app/components/document-list/document-list.component.html
+ 198
+
+ Sort by ASN
+
+
+ ASN
+
+ src/app/components/document-list/document-list.component.html
+ 202
+
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 200
+
+
+ src/app/data/document.ts
+ 70
+
+
+ src/app/data/document.ts
+ 88
+
+ ASN
+
+
+ Sort by correspondent
+
+ src/app/components/document-list/document-list.component.html
+ 207
+
+ Sort by correspondent
+
+
+ Sort by title
+
+ src/app/components/document-list/document-list.component.html
+ 216
+
+ Sort by title
+
+
+ Sort by owner
+
+ src/app/components/document-list/document-list.component.html
+ 229
+
+ Sort by owner
+
+
+ Owner
+
+ src/app/components/document-list/document-list.component.html
+ 233
+
+
+ src/app/data/document.ts
+ 62
+
+
+ src/app/data/document.ts
+ 96
+
+ Owner
+
+
+ Sort by notes
+
+ src/app/components/document-list/document-list.component.html
+ 238
+
+ Sort by notes
+
+
+ Sort by document type
+
+ src/app/components/document-list/document-list.component.html
+ 247
+
+ Sort by document type
+
+
+ Sort by storage path
+
+ src/app/components/document-list/document-list.component.html
+ 256
+
+ Sort by storage path
+
+
+ Sort by created date
+
+ src/app/components/document-list/document-list.component.html
+ 265
+
+ Sort by created date
+
+
+ Sort by added date
+
+ src/app/components/document-list/document-list.component.html
+ 274
+
+ Sort by added date
+
+
+ Sort by number of pages
+
+ src/app/components/document-list/document-list.component.html
+ 283
+
+ Sort by number of pages
+
+
+ Pages
+
+ src/app/components/document-list/document-list.component.html
+ 287
+
+
+ src/app/data/document.ts
+ 74
+
+
+ src/app/data/document.ts
+ 97
+
+
+ src/app/data/paperless-config.ts
+ 91
+
+ Pages
+
+
+ Shared
+
+ src/app/components/document-list/document-list.component.html
+ 290,292
+
+ Shared
+
+
+ Sort by
+
+ src/app/components/document-list/document-list.component.html
+ 297,298
+
+ Sort by
+
+
+ Edit document
+
+ src/app/components/document-list/document-list.component.html
+ 331
+
+ Edit document
+
+
+ Preview document
+
+ src/app/components/document-list/document-list.component.html
+ 332
+
+ Preview document
+
+
+ Reset filters / selection
+
+ src/app/components/document-list/document-list.component.ts
+ 296
+
+ Reset filters / selection
+
+
+ Open first [selected] document
+
+ src/app/components/document-list/document-list.component.ts
+ 324
+
+ Open first [selected] document
+
+
+ Previous page
+
+ src/app/components/document-list/document-list.component.ts
+ 340
+
+ Previous page
+
+
+ Next page
+
+ src/app/components/document-list/document-list.component.ts
+ 352
+
+ Next page
+
+
+ View "" saved successfully.
+
+ src/app/components/document-list/document-list.component.ts
+ 385
+
+ View "" saved successfully.
+
+
+ Failed to save view "".
+
+ src/app/components/document-list/document-list.component.ts
+ 391
+
+ Failed to save view "".
+
+
+ View "" created successfully.
+
+ src/app/components/document-list/document-list.component.ts
+ 437
+
+ View "" created successfully.
+
+
+ Dates
+
+ src/app/components/document-list/filter-editor/filter-editor.component.html
+ 90
+
+ Dates
+
+
+ Title & content
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 198
+
+ Title & content
+
+
+ File type
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 205
+
+ File type
+
+
+ More like
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 214
+
+ More like
+
+
+ equals
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 220
+
+ equals
+
+
+ is empty
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 224
+
+ is empty
+
+
+ is not empty
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 228
+
+ is not empty
+
+
+ greater than
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 232
+
+ greater than
+
+
+ less than
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 236
+
+ less than
+
+
+ Correspondent:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 277,281
+
+ Correspondent:
+
+
+ Without correspondent
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 283
+
+ Without correspondent
+
+
+ Document type:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 289,293
+
+ Document type:
+
+
+ Without document type
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 295
+
+ Without document type
+
+
+ Storage path:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 301,305
+
+ Storage path:
+
+
+ Without storage path
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 307
+
+ Without storage path
+
+
+ Tag:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 311,313
+
+ Tag:
+
+
+ Without any tag
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 317
+
+ Without any tag
+
+
+ Custom fields query
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 321
+
+ Custom fields query
+
+
+ Title:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 324
+
+ Title:
+
+
+ ASN:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 327
+
+ ASN:
+
+
+ Owner:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 330
+
+ Owner:
+
+
+ Owner not in:
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 333
+
+ Owner not in:
+
+
+ Without an owner
+
+ src/app/components/document-list/filter-editor/filter-editor.component.ts
+ 336
+
+ Without an owner
+
+
+ Save current view
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 3
+
+ Save current view
+
+
+ Show in sidebar
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 9
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 24
+
+ Show in sidebar
+
+
+ Show on dashboard
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 10
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 20
+
+ Show on dashboard
+
+
+ Filter rules error occurred while saving this view
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 13
+
+ Filter rules error occurred while saving this view
+
+
+ The error returned was
+
+ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+ 14
+
+ The error returned was
+
+
+ Enter note
+
+ src/app/components/document-notes/document-notes.component.html
+ 5
+
+ Enter note
+
+
+ Please enter a note.
+
+ src/app/components/document-notes/document-notes.component.html
+ 6,8
+
+ Please enter a note.
+
+
+ Add note
+
+ src/app/components/document-notes/document-notes.component.html
+ 14
+
+ Add note
+
+
+ Delete note
+
+ src/app/components/document-notes/document-notes.component.html
+ 25
+
+
+ src/app/components/document-notes/document-notes.component.html
+ 27
+
+ Delete note
+
+
+ Error saving note
+
+ src/app/components/document-notes/document-notes.component.ts
+ 81
+
+ Error saving note
+
+
+ Error deleting note
+
+ src/app/components/document-notes/document-notes.component.ts
+ 95
+
+ Error deleting note
+
+
+ Drop files to begin upload
+
+ src/app/components/file-drop/file-drop.component.html
+ 6
+
+ Drop files to begin upload
+
+
+ Initiating upload...
+
+ src/app/components/file-drop/file-drop.component.ts
+ 137
+
+
+ src/app/components/file-drop/file-drop.component.ts
+ 146
+
+ Initiating upload...
+
+
+ Failed to read dropped items:
+
+ src/app/components/file-drop/file-drop.component.ts
+ 142
+
+ Failed to read dropped items:
+
+
+ correspondent
+
+ src/app/components/manage/correspondent-list/correspondent-list.component.ts
+ 47
+
+ correspondent
+
+
+ correspondents
+
+ src/app/components/manage/correspondent-list/correspondent-list.component.ts
+ 48
+
+ correspondents
+
+
+ Last used
+
+ src/app/components/manage/correspondent-list/correspondent-list.component.ts
+ 53
+
+ Last used
+
+
+ Do you really want to delete the correspondent ""?
+
+ src/app/components/manage/correspondent-list/correspondent-list.component.ts
+ 78
+
+ Do you really want to delete the correspondent ""?
+
+
+ Customize the data fields that can be attached to documents.
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 4
+
+ Customize the data fields that can be attached to documents.
+
+
+ Add Field
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 9
+
+ Add Field
+
+
+ Data Type
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 18
+
+ Data Type
+
+
+ Filter Documents ()
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 45
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 117
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 117
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 117
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 117
+
+ Filter Documents ()
+
+
+ No fields defined.
+
+ src/app/components/manage/custom-fields/custom-fields.component.html
+ 70
+
+ No fields defined.
+
+
+ Confirm delete field
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 102
+
+ Confirm delete field
+
+
+ This operation will permanently delete this field.
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 103
+
+ This operation will permanently delete this field.
+
+
+ Deleted field ""
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 112
+
+ Deleted field ""
+
+
+ Error deleting field "".
+
+ src/app/components/manage/custom-fields/custom-fields.component.ts
+ 121
+
+ Error deleting field "".
+
+
+ document type
+
+ src/app/components/manage/document-type-list/document-type-list.component.ts
+ 43
+
+ document type
+
+
+ document types
+
+ src/app/components/manage/document-type-list/document-type-list.component.ts
+ 44
+
+ document types
+
+
+ Do you really want to delete the document type ""?
+
+ src/app/components/manage/document-type-list/document-type-list.component.ts
+ 49
+
+ Do you really want to delete the document type ""?
+
+
+ Mail Settings
+
+ src/app/components/manage/mail/mail.component.html
+ 2
+
+ Mail Settings
+
+
+ Mail accounts
+
+ src/app/components/manage/mail/mail.component.html
+ 12
+
+ Mail accounts
+
+
+ Add Account
+
+ src/app/components/manage/mail/mail.component.html
+ 14
+
+ Add Account
+
+
+ Connect Gmail Account
+
+ src/app/components/manage/mail/mail.component.html
+ 18
+
+ Connect Gmail Account
+
+
+ Connect Outlook Account
+
+ src/app/components/manage/mail/mail.component.html
+ 23
+
+ Connect Outlook Account
+
+
+ Server
+
+ src/app/components/manage/mail/mail.component.html
+ 31
+
+ Server
+
+
+ Process Mail
+
+ src/app/components/manage/mail/mail.component.html
+ 68
+
+
+ src/app/components/manage/mail/mail.component.html
+ 86
+
+ Process Mail
+
+
+ No mail accounts defined.
+
+ src/app/components/manage/mail/mail.component.html
+ 95
+
+ No mail accounts defined.
+
+
+ Mail rules
+
+ src/app/components/manage/mail/mail.component.html
+ 103
+
+ Mail rules
+
+
+ Add Rule
+
+ src/app/components/manage/mail/mail.component.html
+ 105
+
+ Add Rule
+
+
+ Sort Order
+
+ src/app/components/manage/mail/mail.component.html
+ 112
+
+ Sort Order
+
+
+ Disabled
+
+ src/app/components/manage/mail/mail.component.html
+ 137
+
+
+ src/app/components/manage/workflows/workflows.component.html
+ 41
+
+ Disabled
+
+
+ View Processed Mail
+
+ src/app/components/manage/mail/mail.component.html
+ 143
+
+ View Processed Mail
+
+
+ No mail rules defined.
+
+ src/app/components/manage/mail/mail.component.html
+ 183
+
+ No mail rules defined.
+
+
+ Error retrieving mail accounts
+
+ src/app/components/manage/mail/mail.component.ts
+ 105
+
+ Error retrieving mail accounts
+
+
+ Error retrieving mail rules
+
+ src/app/components/manage/mail/mail.component.ts
+ 127
+
+ Error retrieving mail rules
+
+
+ OAuth2 authentication success
+
+ src/app/components/manage/mail/mail.component.ts
+ 135
+
+ OAuth2 authentication success
+
+
+ OAuth2 authentication failed, see logs for details
+
+ src/app/components/manage/mail/mail.component.ts
+ 146
+
+ OAuth2 authentication failed, see logs for details
+
+
+ Saved account "".
+
+ src/app/components/manage/mail/mail.component.ts
+ 170
+
+ Saved account "".
+
+
+ Error saving account.
+
+ src/app/components/manage/mail/mail.component.ts
+ 182
+
+ Error saving account.
+
+
+ Confirm delete mail account
+
+ src/app/components/manage/mail/mail.component.ts
+ 190
+
+ Confirm delete mail account
+
+
+ This operation will permanently delete this mail account.
+
+ src/app/components/manage/mail/mail.component.ts
+ 191
+
+ This operation will permanently delete this mail account.
+
+
+ Deleted mail account ""
+
+ src/app/components/manage/mail/mail.component.ts
+ 201
+
+ Deleted mail account ""
+
+
+ Error deleting mail account "".
+
+ src/app/components/manage/mail/mail.component.ts
+ 212
+
+ Error deleting mail account "".
+
+
+ Processing mail account ""
+
+ src/app/components/manage/mail/mail.component.ts
+ 224
+
+ Processing mail account ""
+
+
+ Error processing mail account ""
+
+ src/app/components/manage/mail/mail.component.ts
+ 229
+
+ Error processing mail account ""
+
+
+ Saved rule "".
+
+ src/app/components/manage/mail/mail.component.ts
+ 247
+
+ Saved rule "".
+
+
+ Error saving rule.
+
+ src/app/components/manage/mail/mail.component.ts
+ 258
+
+ Error saving rule.
+
+
+ Rule "" enabled.
+
+ src/app/components/manage/mail/mail.component.ts
+ 274
+
+ Rule "" enabled.
+
+
+ Rule "" disabled.
+
+ src/app/components/manage/mail/mail.component.ts
+ 275
+
+ Rule "" disabled.
+
+
+ Error toggling rule "".
+
+ src/app/components/manage/mail/mail.component.ts
+ 280
+
+ Error toggling rule "".
+
+
+ Confirm delete mail rule
+
+ src/app/components/manage/mail/mail.component.ts
+ 291
+
+ Confirm delete mail rule
+
+
+ This operation will permanently delete this mail rule.
+
+ src/app/components/manage/mail/mail.component.ts
+ 292
+
+ This operation will permanently delete this mail rule.
+
+
+ Deleted mail rule ""
+
+ src/app/components/manage/mail/mail.component.ts
+ 302
+
+ Deleted mail rule ""
+
+
+ Error deleting mail rule "".
+
+ src/app/components/manage/mail/mail.component.ts
+ 313
+
+ Error deleting mail rule "".
+
+
+ Permissions updated
+
+ src/app/components/manage/mail/mail.component.ts
+ 337
+
+ Permissions updated
+
+
+ Error updating permissions
+
+ src/app/components/manage/mail/mail.component.ts
+ 342
+
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 349
+
+ Error updating permissions
+
+
+ Processed Mail for
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 2
+
+ Processed Mail for
+
+
+ No processed email messages found.
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 20
+
+ No processed email messages found.
+
+
+ Received
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 33
+
+ Received
+
+
+ Processed
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
+ 34
+
+ Processed
+
+
+ Processed mail(s) deleted
+
+ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
+ 72
+
+ Processed mail(s) deleted
+
+
+ Filter by:
+
+ src/app/components/manage/management-list/management-list.component.html
+ 20
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 20
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 20
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 20
+
+ Filter by:
+
+
+ Matching
+
+ src/app/components/manage/management-list/management-list.component.html
+ 39
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 39
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 39
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 39
+
+ Matching
+
+
+ Document count
+
+ src/app/components/manage/management-list/management-list.component.html
+ 40
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 40
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 40
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 40
+
+ Document count
+
+
+ {VAR_PLURAL, plural, =1 {One } other { total }}
+
+ src/app/components/manage/management-list/management-list.component.html
+ 67
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 67
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 67
+
+
+ src/app/components/manage/management-list/management-list.component.html
+ 67
+
+ {VAR_PLURAL, plural, =1 {One } other { total }}
+
+
+ Automatic
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 118
+
+
+ src/app/data/matching-model.ts
+ 15
+
+ Automatic
+
+
+ Successfully created .
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 196
+
+ Successfully created .
+
+
+ Error occurred while creating .
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 201
+
+ Error occurred while creating .
+
+
+ Successfully updated "".
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 216
+
+ Successfully updated "".
+
+
+ Error occurred while saving .
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 221
+
+ Error occurred while saving .
+
+
+ Associated documents will not be deleted.
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 241
+
+ Associated documents will not be deleted.
+
+
+ Error while deleting element
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 257
+
+ Error while deleting element
+
+
+ Permissions updated successfully
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 342
+
+ Permissions updated successfully
+
+
+ This operation will permanently delete all objects.
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 363
+
+ This operation will permanently delete all objects.
+
+
+ Objects deleted successfully
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 377
+
+ Objects deleted successfully
+
+
+ Error deleting objects
+
+ src/app/components/manage/management-list/management-list.component.ts
+ 383
+
+ Error deleting objects
+
+
+ Customize the views of your documents.
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 4
+
+ Customize the views of your documents.
+
+
+ Documents page size
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 41
+
+ Documents page size
+
+
+ Display as
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 44
+
+ Display as
+
+
+ Table
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 46
+
+ Table
+
+
+ Small Cards
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 47
+
+ Small Cards
+
+
+ Large Cards
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 48
+
+ Large Cards
+
+
+ No saved views defined.
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 61
+
+ No saved views defined.
+
+
+ Saved view "" deleted.
+
+ src/app/components/manage/saved-views/saved-views.component.ts
+ 133
+
+ Saved view "" deleted.
+
+
+ Views saved successfully.
+
+ src/app/components/manage/saved-views/saved-views.component.ts
+ 158
+
+ Views saved successfully.
+
+
+ Error while saving views.
+
+ src/app/components/manage/saved-views/saved-views.component.ts
+ 163
+
+ Error while saving views.
+
+
+ storage path
+
+ src/app/components/manage/storage-path-list/storage-path-list.component.ts
+ 45
+
+ storage path
+
+
+ storage paths
+
+ src/app/components/manage/storage-path-list/storage-path-list.component.ts
+ 46
+
+ storage paths
+
+
+ Do you really want to delete the storage path ""?
+
+ src/app/components/manage/storage-path-list/storage-path-list.component.ts
+ 62
+
+ Do you really want to delete the storage path ""?
+
+
+ tag
+
+ src/app/components/manage/tag-list/tag-list.component.ts
+ 45
+
+ tag
+
+
+ tags
+
+ src/app/components/manage/tag-list/tag-list.component.ts
+ 46
+
+ tags
+
+
+ Do you really want to delete the tag ""?
+
+ src/app/components/manage/tag-list/tag-list.component.ts
+ 61
+
+ Do you really want to delete the tag ""?
+
+
+ Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
+
+ src/app/components/manage/workflows/workflows.component.html
+ 4
+
+ Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
+
+
+ Add Workflow
+
+ src/app/components/manage/workflows/workflows.component.html
+ 9
+
+ Add Workflow
+
+
+ No workflows defined.
+
+ src/app/components/manage/workflows/workflows.component.html
+ 80
+
+ No workflows defined.
+
+
+ Saved workflow "".
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 90
+
+ Saved workflow "".
+
+
+ Error saving workflow.
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 98
+
+ Error saving workflow.
+
+
+ Confirm delete workflow
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 131
+
+ Confirm delete workflow
+
+
+ This operation will permanently delete this workflow.
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 132
+
+ This operation will permanently delete this workflow.
+
+
+ Deleted workflow "".
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 142
+
+ Deleted workflow "".
+
+
+ Error deleting workflow "".
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 149
+
+ Error deleting workflow "".
+
+
+ Enabled workflow ""
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 162
+
+ Enabled workflow ""
+
+
+ Disabled workflow ""
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 163
+
+ Disabled workflow ""
+
+
+ Error toggling workflow "".
+
+ src/app/components/manage/workflows/workflows.component.ts
+ 170
+
+ Error toggling workflow "".
+
+
+ Not Found
+
+ src/app/components/not-found/not-found.component.html
+ 6
+
+ Not Found
+
+
+ Go to Dashboard
+
+ src/app/components/not-found/not-found.component.html
+ 9
+
+ Go to Dashboard
+
+
+ Equal to
+
+ src/app/data/custom-field-query.ts
+ 24
+
+ Equal to
+
+
+ In
+
+ src/app/data/custom-field-query.ts
+ 25
+
+ In
+
+
+ Is null
+
+ src/app/data/custom-field-query.ts
+ 26
+
+ Is null
+
+
+ Exists
+
+ src/app/data/custom-field-query.ts
+ 27
+
+ Exists
+
+
+ Contains
+
+ src/app/data/custom-field-query.ts
+ 28
+
+ Contains
+
+
+ Contains (case-insensitive)
+
+ src/app/data/custom-field-query.ts
+ 29
+
+ Contains (case-insensitive)
+
+
+ Greater than
+
+ src/app/data/custom-field-query.ts
+ 30
+
+ Greater than
+
+
+ Greater than or equal to
+
+ src/app/data/custom-field-query.ts
+ 31
+
+ Greater than or equal to
+
+
+ Less than
+
+ src/app/data/custom-field-query.ts
+ 32
+
+ Less than
+
+
+ Less than or equal to
+
+ src/app/data/custom-field-query.ts
+ 33
+
+ Less than or equal to
+
+
+ Range
+
+ src/app/data/custom-field-query.ts
+ 34
+
+ Range
+
+
+ Boolean
+
+ src/app/data/custom-field.ts
+ 19
+
+ Boolean
+
+
+ Date
+
+ src/app/data/custom-field.ts
+ 23
+
+ Date
+
+
+ Integer
+
+ src/app/data/custom-field.ts
+ 27
+
+ Integer
+
+
+ Number
+
+ src/app/data/custom-field.ts
+ 31
+
+ Number
+
+
+ Monetary
+
+ src/app/data/custom-field.ts
+ 35
+
+ Monetary
+
+
+ Text
+
+ src/app/data/custom-field.ts
+ 39
+
+ Text
+
+
+ Url
+
+ src/app/data/custom-field.ts
+ 43
+
+ Url
+
+
+ Document Link
+
+ src/app/data/custom-field.ts
+ 47
+
+ Document Link
+
+
+ Long Text
+
+ src/app/data/custom-field.ts
+ 55
+
+ Long Text
+
+
+ Search score
+
+ src/app/data/document.ts
+ 103
+
+ Score is a value returned by the full text search engine and specifies how well a result matches the given query
+ Search score
+
+
+ Auto: Learn matching automatically
+
+ src/app/data/matching-model.ts
+ 16
+
+ Auto: Learn matching automatically
+
+
+ Any word
+
+ src/app/data/matching-model.ts
+ 20
+
+ Any word
+
+
+ Any: Document contains any of these words (space separated)
+
+ src/app/data/matching-model.ts
+ 21
+
+ Any: Document contains any of these words (space separated)
+
+
+ All words
+
+ src/app/data/matching-model.ts
+ 25
+
+ All words
+
+
+ All: Document contains all of these words (space separated)
+
+ src/app/data/matching-model.ts
+ 26
+
+ All: Document contains all of these words (space separated)
+
+
+ Exact match
+
+ src/app/data/matching-model.ts
+ 30
+
+ Exact match
+
+
+ Exact: Document contains this string
+
+ src/app/data/matching-model.ts
+ 31
+
+ Exact: Document contains this string
+
+
+ Regular expression
+
+ src/app/data/matching-model.ts
+ 35
+
+ Regular expression
+
+
+ Regular expression: Document matches this regular expression
+
+ src/app/data/matching-model.ts
+ 36
+
+ Regular expression: Document matches this regular expression
+
+
+ Fuzzy word
+
+ src/app/data/matching-model.ts
+ 40
+
+ Fuzzy word
+
+
+ Fuzzy: Document contains a word similar to this word
+
+ src/app/data/matching-model.ts
+ 41
+
+ Fuzzy: Document contains a word similar to this word
+
+
+ None: Disable matching
+
+ src/app/data/matching-model.ts
+ 46
+
+ None: Disable matching
+
+
+ General Settings
+
+ src/app/data/paperless-config.ts
+ 50
+
+ General Settings
+
+
+ OCR Settings
+
+ src/app/data/paperless-config.ts
+ 51
+
+ OCR Settings
+
+
+ Barcode Settings
+
+ src/app/data/paperless-config.ts
+ 52
+
+ Barcode Settings
+
+
+ Output Type
+
+ src/app/data/paperless-config.ts
+ 76
+
+ Output Type
+
+
+ Language
+
+ src/app/data/paperless-config.ts
+ 84
+
+ Language
+
+
+ Mode
+
+ src/app/data/paperless-config.ts
+ 98
+
+ Mode
+
+
+ Skip Archive File
+
+ src/app/data/paperless-config.ts
+ 106
+
+ Skip Archive File
+
+
+ Image DPI
+
+ src/app/data/paperless-config.ts
+ 114
+
+ Image DPI
+
+
+ Clean
+
+ src/app/data/paperless-config.ts
+ 121
+
+ Clean
+
+
+ Deskew
+
+ src/app/data/paperless-config.ts
+ 129
+
+ Deskew
+
+
+ Rotate Pages
+
+ src/app/data/paperless-config.ts
+ 136
+
+ Rotate Pages
+
+
+ Rotate Pages Threshold
+
+ src/app/data/paperless-config.ts
+ 143
+
+ Rotate Pages Threshold
+
+
+ Max Image Pixels
+
+ src/app/data/paperless-config.ts
+ 150
+
+ Max Image Pixels
+
+
+ Color Conversion Strategy
+
+ src/app/data/paperless-config.ts
+ 157
+
+ Color Conversion Strategy
+
+
+ OCR Arguments
+
+ src/app/data/paperless-config.ts
+ 165
+
+ OCR Arguments
+
+
+ Application Logo
+
+ src/app/data/paperless-config.ts
+ 172
+
+ Application Logo
+
+
+ Application Title
+
+ src/app/data/paperless-config.ts
+ 179
+
+ Application Title
+
+
+ Enable Barcodes
+
+ src/app/data/paperless-config.ts
+ 186
+
+ Enable Barcodes
+
+
+ Enable TIFF Support
+
+ src/app/data/paperless-config.ts
+ 193
+
+ Enable TIFF Support
+
+
+ Barcode String
+
+ src/app/data/paperless-config.ts
+ 200
+
+ Barcode String
+
+
+ Retain Split Pages
+
+ src/app/data/paperless-config.ts
+ 207
+
+ Retain Split Pages
+
+
+ Enable ASN
+
+ src/app/data/paperless-config.ts
+ 214
+
+ Enable ASN
+
+
+ ASN Prefix
+
+ src/app/data/paperless-config.ts
+ 221
+
+ ASN Prefix
+
+
+ Upscale
+
+ src/app/data/paperless-config.ts
+ 228
+
+ Upscale
+
+
+ DPI
+
+ src/app/data/paperless-config.ts
+ 235
+
+ DPI
+
+
+ Max Pages
+
+ src/app/data/paperless-config.ts
+ 242
+
+ Max Pages
+
+
+ Enable Tag Detection
+
+ src/app/data/paperless-config.ts
+ 249
+
+ Enable Tag Detection
+
+
+ Tag Mapping
+
+ src/app/data/paperless-config.ts
+ 256
+
+ Tag Mapping
+
+
+ Warning: You have unsaved changes to your document(s).
+
+ src/app/guards/dirty-doc.guard.ts
+ 16
+
+ Warning: You have unsaved changes to your document(s).
+
+
+ Unsaved Changes
+
+ src/app/guards/dirty-form.guard.ts
+ 15
+
+
+ src/app/guards/dirty-saved-view.guard.ts
+ 27
+
+
+ src/app/services/open-documents.service.ts
+ 122
+
+
+ src/app/services/open-documents.service.ts
+ 149
+
+ Unsaved Changes
+
+
+ You have unsaved changes.
+
+ src/app/guards/dirty-form.guard.ts
+ 16
+
+
+ src/app/services/open-documents.service.ts
+ 150
+
+ You have unsaved changes.
+
+
+ Are you sure you want to leave?
+
+ src/app/guards/dirty-form.guard.ts
+ 17
+
+ Are you sure you want to leave?
+
+
+ Leave page
+
+ src/app/guards/dirty-form.guard.ts
+ 19
+
+ Leave page
+
+
+ You have unsaved changes to the saved view
+
+ src/app/guards/dirty-saved-view.guard.ts
+ 29
+
+ You have unsaved changes to the saved view
+
+
+ Are you sure you want to close this saved view?
+
+ src/app/guards/dirty-saved-view.guard.ts
+ 33
+
+ Are you sure you want to close this saved view?
+
+
+ Save and close
+
+ src/app/guards/dirty-saved-view.guard.ts
+ 37
+
+ Save and close
+
+
+ You don't have permissions to do that
+
+ src/app/guards/permissions.guard.ts
+ 34
+
+ You don't have permissions to do that
+
+
+ Last year
+
+ src/app/pipes/custom-date.pipe.ts
+ 14
+
+ Last year
+
+
+ %s years ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 15
+
+ %s years ago
+
+
+ Last month
+
+ src/app/pipes/custom-date.pipe.ts
+ 19
+
+ Last month
+
+
+ %s months ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 20
+
+ %s months ago
+
+
+ Last week
+
+ src/app/pipes/custom-date.pipe.ts
+ 24
+
+ Last week
+
+
+ %s weeks ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 25
+
+ %s weeks ago
+
+
+ %s days ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 30
+
+ %s days ago
+
+
+ %s hour ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 34
+
+ %s hour ago
+
+
+ %s hours ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 35
+
+ %s hours ago
+
+
+ %s minute ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 39
+
+ %s minute ago
+
+
+ %s minutes ago
+
+ src/app/pipes/custom-date.pipe.ts
+ 40
+
+ %s minutes ago
+
+
+ Just now
+
+ src/app/pipes/custom-date.pipe.ts
+ 73
+
+ Just now
+
+
+ (no title)
+
+ src/app/pipes/document-title.pipe.ts
+ 11
+
+ (no title)
+
+
+ You have unsaved changes to the document
+
+ src/app/services/open-documents.service.ts
+ 124
+
+ You have unsaved changes to the document
+
+
+ Are you sure you want to close this document?
+
+ src/app/services/open-documents.service.ts
+ 128
+
+ Are you sure you want to close this document?
+
+
+ Are you sure you want to close all documents?
+
+ src/app/services/open-documents.service.ts
+ 151
+
+ Are you sure you want to close all documents?
+
+
+ Close documents
+
+ src/app/services/open-documents.service.ts
+ 153
+
+ Close documents
+
+
+ English (US)
+
+ src/app/services/settings.service.ts
+ 51
+
+ English (US)
+
+
+ Afrikaans
+
+ src/app/services/settings.service.ts
+ 57
+
+ Afrikaans
+
+
+ Arabic
+
+ src/app/services/settings.service.ts
+ 63
+
+ Arabic
+
+
+ Belarusian
+
+ src/app/services/settings.service.ts
+ 69
+
+ Belarusian
+
+
+ Bulgarian
+
+ src/app/services/settings.service.ts
+ 75
+
+ Bulgarian
+
+
+ Catalan
+
+ src/app/services/settings.service.ts
+ 81
+
+ Catalan
+
+
+ Czech
+
+ src/app/services/settings.service.ts
+ 87
+
+ Czech
+
+
+ Danish
+
+ src/app/services/settings.service.ts
+ 93
+
+ Danish
+
+
+ German
+
+ src/app/services/settings.service.ts
+ 99
+
+ German
+
+
+ Greek
+
+ src/app/services/settings.service.ts
+ 105
+
+ Greek
+
+
+ English (GB)
+
+ src/app/services/settings.service.ts
+ 111
+
+ English (GB)
+
+
+ Spanish
+
+ src/app/services/settings.service.ts
+ 117
+
+ Spanish
+
+
+ Finnish
+
+ src/app/services/settings.service.ts
+ 123
+
+ Finnish
+
+
+ French
+
+ src/app/services/settings.service.ts
+ 129
+
+ French
+
+
+ Hungarian
+
+ src/app/services/settings.service.ts
+ 135
+
+ Hungarian
+
+
+ Italian
+
+ src/app/services/settings.service.ts
+ 141
+
+ Italian
+
+
+ Japanese
+
+ src/app/services/settings.service.ts
+ 147
+
+ Japanese
+
+
+ Korean
+
+ src/app/services/settings.service.ts
+ 153
+
+ Korean
+
+
+ Luxembourgish
+
+ src/app/services/settings.service.ts
+ 159
+
+ Luxembourgish
+
+
+ Dutch
+
+ src/app/services/settings.service.ts
+ 165
+
+ Dutch
+
+
+ Norwegian
+
+ src/app/services/settings.service.ts
+ 171
+
+ Norwegian
+
+
+ Persian
+
+ src/app/services/settings.service.ts
+ 177
+
+ Persian
+
+
+ Polish
+
+ src/app/services/settings.service.ts
+ 183
+
+ Polish
+
+
+ Portuguese (Brazil)
+
+ src/app/services/settings.service.ts
+ 189
+
+ Portuguese (Brazil)
+
+
+ Portuguese
+
+ src/app/services/settings.service.ts
+ 195
+
+ Portuguese
+
+
+ Romanian
+
+ src/app/services/settings.service.ts
+ 201
+
+ Romanian
+
+
+ Russian
+
+ src/app/services/settings.service.ts
+ 207
+
+ Russian
+
+
+ Slovak
+
+ src/app/services/settings.service.ts
+ 213
+
+ Slovak
+
+
+ Slovenian
+
+ src/app/services/settings.service.ts
+ 219
+
+ Slovenian
+
+
+ Serbian
+
+ src/app/services/settings.service.ts
+ 225
+
+ Serbian
+
+
+ Swedish
+
+ src/app/services/settings.service.ts
+ 231
+
+ Swedish
+
+
+ Turkish
+
+ src/app/services/settings.service.ts
+ 237
+
+ Turkish
+
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 243
+
+ Ukrainian
+
+
+ Vietnamese
+
+ src/app/services/settings.service.ts
+ 249
+
+ Vietnamese
+
+
+ Chinese Simplified
+
+ src/app/services/settings.service.ts
+ 255
+
+ Chinese Simplified
+
+
+ Chinese Traditional
+
+ src/app/services/settings.service.ts
+ 261
+
+ Chinese Traditional
+
+
+ ISO 8601
+
+ src/app/services/settings.service.ts
+ 269
+
+ ISO 8601
+
+
+ Successfully completed one-time migratration of settings to the database!
+
+ src/app/services/settings.service.ts
+ 603
+
+ Successfully completed one-time migratration of settings to the database!
+
+
+ Unable to migrate settings to the database, please try saving manually.
+
+ src/app/services/settings.service.ts
+ 604
+
+ Unable to migrate settings to the database, please try saving manually.
+
+
+ You can restart the tour from the settings page.
+
+ src/app/services/settings.service.ts
+ 677
+
+ You can restart the tour from the settings page.
+
+
+ Connecting...
+
+ src/app/services/upload-documents.service.ts
+ 25
+
+ Connecting...
+
+
+ Uploading...
+
+ src/app/services/upload-documents.service.ts
+ 37
+
+ Uploading...
+
+
+ Upload complete, waiting...
+
+ src/app/services/upload-documents.service.ts
+ 40
+
+ Upload complete, waiting...
+
+
+ HTTP error:
+
+ src/app/services/upload-documents.service.ts
+ 53
+
+ HTTP error:
+
+
+ Document already exists.
+
+ src/app/services/websocket-status.service.ts
+ 24
+
+ Document already exists.
+
+
+ Document already exists. Note: existing document is in the trash.
+
+ src/app/services/websocket-status.service.ts
+ 25
+
+ Document already exists. Note: existing document is in the trash.
+
+
+ Document with ASN already exists.
+
+ src/app/services/websocket-status.service.ts
+ 26
+
+ Document with ASN already exists.
+
+
+ Document with ASN already exists. Note: existing document is in the trash.
+
+ src/app/services/websocket-status.service.ts
+ 27
+
+ Document with ASN already exists. Note: existing document is in the trash.
+
+
+ File not found.
+
+ src/app/services/websocket-status.service.ts
+ 28
+
+ File not found.
+
+
+ Pre-consume script does not exist.
+
+ src/app/services/websocket-status.service.ts
+ 29
+
+ Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation
+ Pre-consume script does not exist.
+
+
+ Error while executing pre-consume script.
+
+ src/app/services/websocket-status.service.ts
+ 30
+
+ Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation
+ Error while executing pre-consume script.
+
+
+ Post-consume script does not exist.
+
+ src/app/services/websocket-status.service.ts
+ 31
+
+ Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation
+ Post-consume script does not exist.
+
+
+ Error while executing post-consume script.
+
+ src/app/services/websocket-status.service.ts
+ 32
+
+ Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation
+ Error while executing post-consume script.
+
+
+ Received new file.
+
+ src/app/services/websocket-status.service.ts
+ 33
+
+ Received new file.
+
+
+ File type not supported.
+
+ src/app/services/websocket-status.service.ts
+ 34
+
+ File type not supported.
+
+
+ Processing document...
+
+ src/app/services/websocket-status.service.ts
+ 35
+
+ Processing document...
+
+
+ Generating thumbnail...
+
+ src/app/services/websocket-status.service.ts
+ 36
+
+ Generating thumbnail...
+
+
+ Retrieving date from document...
+
+ src/app/services/websocket-status.service.ts
+ 37
+
+ Retrieving date from document...
+
+
+ Saving document...
+
+ src/app/services/websocket-status.service.ts
+ 38
+
+ Saving document...
+
+
+ Finished.
+
+ src/app/services/websocket-status.service.ts
+ 39
+
+ Finished.
+
+
+
+
diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf
index bbea582f5..049e8613f 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Close
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Previous
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Next
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Previous month
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Next month
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Close
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Select month
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Click to view.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
How does this work?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Update available
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- now
-
From
@@ -3858,11 +3878,19 @@
Added
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ now
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Case insensitive
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edit user account
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Select all
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Title & content
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
More like
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Without any tag
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 5e4cf8381..4dd03c98d 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Sluiten
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Vorige
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Volgende
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Vorige maand
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Volgende maand
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
UU
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Sluiten
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Selecteer maand
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klik om te bekijken.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx kan automatisch controleren op updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Hoe werkt dit?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Update beschikbaar
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Zijbalkweergaven bijgewerkt
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Fout tijdens bijwerken van zijbalkweergaven
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Waar
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Onwaar
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Zoek documenten...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Niet
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Zoekopdracht toevoegen
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Expressie toevoegen
@@ -3798,18 +3830,6 @@
Relatieve datums
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nu
-
From
@@ -3858,11 +3878,19 @@
Toegevoegd
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nu
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Binnen 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Binnen 1 maand
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Binnen 3 maanden
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Binnen 1 jaar
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Dit jaar
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Deze maand
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Gisteren
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Niet hoofdlettergevoelig
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Documenttype toewijzen
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Correspondent toewijzen
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Nieuw gebruikersaccount maken
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Bewerk gebruikersaccount
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP uitgeschakeld
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Fout bij uitschakelen TOTP
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relatief aan
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Aangepast veld
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Herhalend
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Herhalingsinterval in dagen
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger voor documenten die overeenkomen met alle filters hieronder.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Bestandsnaam filteren
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Toepassen op documenten die overeenkomen met deze bestandsnaam. Wildcards als *.pdf of *factuur* zijn toegestaan. Niet hoofdlettergevoelig.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Bronnen filteren
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter op opslaglocatie
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Hoofdletters worden genormaliseerd.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter op e-mailregel
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Toepassen op documenten die via deze e-mailregel zijn toegevoegd.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Inhoud matchingsalgoritme
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Inhoud matchen op patroon
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Actietype
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Titel toewijzen
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Kan gebruik maken van sommige placeholders, zie <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentatie</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Labels toewijzen
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Opslaglocatie toewijzen
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Aangepaste velden toewijzen
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Eigenaar toewijzen
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Weergaverechten toewijzen
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Bewerkingsrechten toewijzen
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Verwijder labels
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Verwijder alle
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Verwijder correspondenten
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Verwijder documenttypes
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Verwijder opslagpaden
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Verwijder aangepaste velden
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Verwijder eigenaars
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Verwijder rechten
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Bekijk rechten
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Bewerk rechten
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
E-mail onderwerp
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
E-mail tekst
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
E-mail ontvangers
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Voeg document toe
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Gebruik parameters voor de webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Verzend webhook payload als JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook parameters
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Zonder toewijzing
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profiel succesvol bijgewerkt
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Fout bij opslaan profiel
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Fout bij genereren authenticatie token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Fout bij ontkoppelen van sociaal account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Fout bij ophalen TOTP instellingen
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP succesvol ingeschakeld
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Fout bij inschakelen TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP is succesvol uitgeschakeld
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Fout bij uitschakelen TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Printen mislukt.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Fout bij laden van document voor printen.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Fout bij het laden van tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Aangepaste velden
@@ -8669,6 +8729,14 @@
Alles selecteren
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8685,18 +8753,6 @@
Geen
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Toon
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel en inhoud
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Bestandstype
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Meer zoals
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
gelijk aan
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is leeg
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is niet leeg
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
groter dan
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
kleiner dan
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Zonder correspondent
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Zonder documenttype
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Zonder opslagpad
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Label:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Zonder label
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Aangepaste velden zoekopdracht
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Eigenaar:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Eigenaar niet in:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Zonder eigenaar
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Fout bij bijwerken rechten
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Rechten succesvol bijgewerkt
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Deze bewerking zal alle objecten permanent verwijderen.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objecten succesvol verwijderd
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Fout bij verwijderen object
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index e7ed768fd..1670b9575 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Lukk
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Forrige
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Neste
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Forrige måned
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Neste måned
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Lukk
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Velg en måned
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klikk for å se.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx kan automatisk sjekke etter oppdateringer
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Hvordan fungerer dette?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Oppdatering er tilgjengelig
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidepanel visning oppdatert
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Feil ved oppdatering av sidepanelet
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Det oppstod en feil under lagring av innstillinger for oppdatering.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nå
-
From
@@ -3858,11 +3878,19 @@
Lagt til
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nå
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Skill IKKE mellom store og små bokstaver
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Tilordne dokumenttype
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Tildel korrespondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Opprett ny brukerkonto
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Rediger brukerkonto
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Tildel lagringssti
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Tilordne eier
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Tilordne visningstillatelser
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Tilordne redigeringstillatelser
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Fjern etiketter
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Fjern alle
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Fjern korrespondenter
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Fjern dokumenttyper
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Fjern lagringsstier
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Fjern eiere
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Fjern tillatelser
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Vis rettigheter
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Endre rettigheter
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ikke tildelt
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Velg alle
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Ingen
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Vis
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Tittel & innhold
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Mer lik
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
er lik
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
er tom
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
er ikke tom
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
større enn
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
mindre enn
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Uten korrespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Uten dokumenttype
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Uten lagringssti
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Uten noen etiketter
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Tittel:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Eier:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Eier ikke i:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Uten en eier
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 64cd27b92..fa73b00cf 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zamknij
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Poprzedni
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Następny
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Poprzedni miesiąc
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Następny miesiąc
@@ -62,15 +62,15 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- HH
+ GG
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zamknij
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Wybierz miesiąc
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Kliknij, aby zobaczyć.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Jak to działa?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Aktualizacja jest dostępna
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Zaktualizowano widoki bocznego panelu
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Błąd podczas aktualizacji widoków bocznego panelu
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Prawda
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Fałsz
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Wyszukaj dokumenty...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Nie
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Dodaj zapytanie
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Dodaj wyrażenie
@@ -3798,18 +3830,6 @@
Daty względne
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- teraz
-
From
@@ -3858,11 +3878,19 @@
Dodano
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ teraz
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
W ciągu 1 tygodnia
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
W ciągu 1 miesiąca
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
W ciągu 3 miesięcy
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
W ciągu 1 roku
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
W tym roku
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
W tym miesiącu
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Wczoraj
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Poprzedni tydzień
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Poprzedni miesiąc
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Poprzedni kwartał
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Poprzedni rok
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
(Nieuwzględniający wielkości liter)
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Przypisz typ dokumentu
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Przypisz korespondenta
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4792,7 +4852,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Parent
+ Nadrzędny/a
Inbox tag
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Utwórz nowe konto użytkownika
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Edytuj konto użytkownika
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp wyłączony
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Dezaktywacja totp nie powiodła się
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Typ wyzwalacza
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Ustaw offset zaplanowanego wyzwalacza i pole daty do użycia.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Liczba dni przesunięcia
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Dodatnie wartości spowodują działanie po dacie, a ujemne – przed nią.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Względem
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Pole niestandardowe
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Pole niestandardowe używane dla daty.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Cykliczne
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Wyzwalacz jest cykliczny.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Odstęp w dniach
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Powtarzaj wyzwalacz co n dni.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Wyzwalacze do dokumentów, które pasują do wszystkich filtrów określonych poniżej.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtruj po nazwie pliku
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Zastosuj do dokumentów, które pasują do tej nazwy pliku. Maski takie jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie ma znaczenia.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtruj źródła
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtruj ścieżkę
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Zastosuj do dokumentów pasujących do tej ścieżki. Dozwolone są symbole wieloznaczne takie jak *. Wielkość liter nie ma znaczenia.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Reguła filtrowania wiadomości e-mail
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Zastosuj do dokumentów pobieranych za pomocą tej reguły mailowej.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algorytm dopasowania zawartości
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Wzór dopasowania zawartości
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Filtry zaawansowane
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Dodaj filtr
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Nie zdefiniowano zaawansowanych filtrów przepływu pracy.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Zakończ konfigurację pola niestandardowego.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Typ akcji
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Przypisz tytuł
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Może zawierać różna zmienne, zobacz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentację</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Przypisz tagi
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Przypisz ścieżkę zapisu
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Przypisz pola dodatkowe
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Przypisz właściciela
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Przypisz uprawnienia do przeglądania
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Przypisz uprawnienia do edycji
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Usuń tagi
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Usuń wszystko
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Usuń korespondentów
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Usuń typy dokumentów
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Usuń ścieżki zapisu
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Usuń pole niestandardowe
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Usuń właścicieli
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Usuń uprawnienia
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Uprawnienia do przeglądania
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Uprawnienia do edycji
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Temat e-maila
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Treść e-maila
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Odbiorcy e-maila
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Dołącz dokument
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Adres URL webhooka
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Użyj parametrów dla treści webhooka
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Wyślij ładunek webhooka jako JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parametry webhooka
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Treść webhooka
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Nagłówki webhooka
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Dołącz dokument
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ Zawiera którykolwiek z podanych tagów
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ Zawiera wszystkie podane tagi
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Nie zawiera żadnego z podanych tagów
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ Nie posiada korespondentów
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ Nie posiada typów dokumentów
Has storage path
@@ -5676,7 +5736,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Has storage path
+ Ma ścieżkę zapisu w
Does not have storage paths
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ Brak ścieżki zapisu w
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Pasuje do zapytania o pole niestandardowe
Create new workflow
@@ -5716,7 +5776,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural, =1 {Dokument e-mailowy} other {Wyślij dokumentów e-mailowych}}
Email address(es)
@@ -5768,7 +5828,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Niektóre serwery poczty elektronicznej mogą odrzucać wiadomości z dużymi załącznikami.
Email sent
@@ -5784,7 +5844,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Błąd podczas wysyłania dokumentów
Error emailing document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nieprzypisane
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Otwórz filtr
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6162,7 +6222,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Select all pages
+ Zaznacz wszystkie strony
Deselect all pages
@@ -6170,7 +6230,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Deselect all pages
+ Odznacz wszystkie strony
Rotate selected pages counter-clockwise
@@ -6178,7 +6238,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Rotate selected pages counter-clockwise
+ Obróć wybrane strony przeciwnie do ruchu wskazówek zegara
Rotate selected pages clockwise
@@ -6186,7 +6246,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Rotate selected pages clockwise
+ Obróć wybrane strony zgodnie z ruchem wskazówek zegara
Delete selected pages
@@ -6194,7 +6254,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Delete selected pages
+ Usuń wybrane strony
Rotate page counter-clockwise
@@ -6202,7 +6262,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Rotate page counter-clockwise
+ Obróć stronę przeciwnie do ruchu wskazówek zegara
Rotate page clockwise
@@ -6210,7 +6270,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Rotate page clockwise
+ Obróć stronę zgodnie z ruchem wskazówek zegara
Delete page
@@ -6218,7 +6278,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Delete page
+ Usuń stronę
Add / remove document split here
@@ -6226,7 +6286,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ Dodaj / usuń podział dokumentu
Split here
@@ -6234,7 +6294,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Split here
+ Podziel tutaj
Create new document(s)
@@ -6242,7 +6302,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Create new document(s)
+ Utwórz nowy dokument(y)
Update existing document
@@ -6250,7 +6310,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Update existing document
+ Zaktualizuj istniejący dokument
Copy metadata
@@ -6258,7 +6318,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ Skopiuj metadane
Delete original
@@ -6266,7 +6326,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Delete original
+ Usuń oryginał
Merge with existing permissions
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil został pomyślnie zaktualizowany
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Błąd podczas zapisywania profilu
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Błąd generowania tokenu autoryzacyjnego
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Błąd rozłączania konta społecznościowego
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Błąd pobierania ustawień TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP aktywowany pomyślnie
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Błąd aktywacji TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP dezaktywowany pomyślnie
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Błąd dezaktywacji TOTP
@@ -7030,7 +7090,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- WebSocket Connection
+ Połączenie WebSocket
OK
@@ -7038,7 +7098,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- OK
+ OK
Copy Raw Error
@@ -7376,7 +7436,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ z
-
@@ -7420,7 +7480,7 @@
src/app/components/document-detail/document-detail.component.html
58
- Print
+ Drukuj
More like this
@@ -7444,7 +7504,7 @@
src/app/components/document-detail/document-detail.component.ts
1392
- PDF Editor
+ Edytor dokumentu PDF
Send
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -7992,7 +8052,7 @@
src/app/components/document-detail/document-detail.component.ts
1411
- PDF edit operation for "" will begin in the background.
+ Edycja dokumentu PDF dla "" rozpocznie się w tle.
Error executing PDF edit operation
@@ -8000,33 +8060,33 @@
src/app/components/document-detail/document-detail.component.ts
1423
- Error executing PDF edit operation
+ Błąd podczas edycji dokumentu PDF
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
- Print failed.
+ Błąd drukowania.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
- Error loading document for printing.
+ Błąd ładowania dokumentu do wydruku.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Wystąpił błąd podczas ładowania pliku TIFF:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Pola dodatkowe
@@ -8669,6 +8729,14 @@
Zaznacz wszystko
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Wybierz:
+
None
@@ -8685,18 +8753,6 @@
Brak
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Pokaż
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Tytuł & treść
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Typ pliku
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Podobne do
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
równa się
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
jest pusty
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
nie jest pusty
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
większy niż
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
mniejsze niż
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Korespondent:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Bez nadawcy
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Typ dokumentu:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Bez typu dokumentu
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Ścieżka przechowywania:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Bez ścieżki zapisu
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Bez żadnego tagu
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Zapytanie o pola dodatkowe
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Tytuł:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
Numer archiwum:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Właściciel:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Właściciel nie w:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Bez właściciela
@@ -9571,7 +9627,7 @@
src/app/components/manage/mail/mail.component.html
143
- View Processed Mail
+ Zobacz Przetworzoną pocztę
No mail rules defined.
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Błąd aktualizacji uprawnień
@@ -9775,7 +9831,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Processed Mail for
+ Przetworzona poczta dla
No processed email messages found.
@@ -9783,7 +9839,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+ Nie znaleziono przetworzonych wiadomości.
Received
@@ -9791,7 +9847,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ Odebrano
Processed
@@ -9799,7 +9855,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Processed
+ Przetworzono
Processed mail(s) deleted
@@ -9807,7 +9863,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ Usunięto przetworzone wiadomości
Filter by:
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Uprawnienia zostały pomyślnie zaktualizowane
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Ta operacja spowoduje trwałe usunięcie wszystkich obiektów.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Obiekty usunięte pomyślnie
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Błąd usuwania obiektów
@@ -10379,7 +10435,7 @@
src/app/data/custom-field.ts
55
- Long Text
+ Pełny tekst
Search score
@@ -11204,7 +11260,7 @@
src/app/services/settings.service.ts
249
- Vietnamese
+ Wietnamski
Chinese Simplified
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index ccdd4cbfe..3a183e5e9 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Fechar
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Anterior
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Próximo
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mês anterior
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Próximo mês
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Fechar
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Selecione o mês
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Clique para visualizar.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx pode verificar atualizações automaticamente
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Como isto funciona?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Atualização disponível
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Visualizações da barra lateral atualizadas
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Erro ao atualizar visualizações da barra lateral
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Ocorreu um erro ao salvar as verificações de atualizações.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Verdadeiro
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falso
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Procura documentos...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Não
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Adicionar consulta
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Adicionar expressão
@@ -3798,18 +3830,6 @@
Datas relacionadas
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- hoje
-
From
@@ -3858,11 +3878,19 @@
Adicionado
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ hoje
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Em 1 semana
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Em 1 mês
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Em 3 meses
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Em 1 ano
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Este ano
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Este mês
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Ontem
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Não diferenciar maiúsculas de minúsculas
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Atribuir tipo de documento
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Atribuir correspondente
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Criar uma nova conta de usuário
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Editar conta de usuário
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp desativado
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Desativação de totp falhou
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tipo de acionador
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Define o deslocamento do gatilho programado e o campo a ser usado.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Dias de deslocamento
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Valores positivos serão acionados após a data, valores negativos antes.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relativo a
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizado
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Campo personalizado para usar para data.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recorrente
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Gatilho é recorrente.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Dias do intervalo recorrentes
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repetir o gatilho a cada n dias.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Acionar os documentos que correspondem a todos os filtros especificados abaixo.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtro de nome de arquivo
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Aplica-se a documentos que correspondem a esse nome de arquivo. Caracteres curinga como *.pdf ou *fatura* são permitidos. Sem diferenciação de maiúsculas e minúsculas.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtro de fontes
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtro de caminho
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filtro de regra de e-mail
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Aplica-se a documentos consumidos por essa regra de e-mail.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritmo de conteúdo correspondente
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Conteúdo correspondente padrão
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Filtros Avançados
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Adicionar filtro
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Nenhum filtro avançado de fluxo de trabalho definido.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Conclua a configuração da consulta de campo personalizado.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tipo de ação
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Atribuir título
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Pode incluir alguns espaços reservados, consulte a <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentação</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Atribuir etiquetas
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Atribuir caminho de armazenamento
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Atribuir campos personalizados
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Atribuir proprietário
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Atribuir permissões de visualização
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Atribuir permissões de edição
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remover etiquetas
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remover tudo
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remover correspondentes
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remover tipos de documentos
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remover caminhos de armazenamento
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remover campos personalizados
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remover proprietários
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remover permissões
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Exibir Permissões
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Editar permissões
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Assunto do email
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Corpo do e-mail
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Destinatários de e-mail
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Anexar documento
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Url do webhook
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Usar parâmetros para o corpo do webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Enviar payload do webhook como JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parâmetros do webhook
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Corpo do webhook
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Cabeçalhos de webhook
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Incluir documentos
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ Possui alguma destas etiquetas
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ Possui estas etiquetas
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Não possui estas etiquetas
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ Não possui correspondentes
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ Não possui tipos de documento
Has storage path
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ Não possui caminhos de armazenamento
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Corresponde à consulta de campo personalizado
Create new workflow
@@ -5716,7 +5776,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural, =1 {Enviar documento por e-mail} other {Email Documentos}}
Email address(es)
@@ -5768,7 +5828,8 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Alguns servidores de e-mail podem rejeitar mensagens com anexos grandes.
+Erro ao enviar documentos por e-mail
Email sent
@@ -5784,7 +5845,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Erro ao enviar documentos por e-mail
Error emailing document
@@ -5858,7 +5919,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Não atribuído
@@ -5867,7 +5928,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Abrir filtro
@@ -5947,7 +6008,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6681,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Perfil atualizado com sucesso
@@ -6628,7 +6689,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Erro ao salvar o perfil
@@ -6636,7 +6697,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Erro ao gerar token de autenticação
@@ -6644,7 +6705,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Erro ao desconectar conta de rede social
@@ -6652,7 +6713,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Erro ao obter configurações TOTP
@@ -6660,7 +6721,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP ativado com sucesso
@@ -6668,11 +6729,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Erro ao ativar TOTP
@@ -6680,7 +6741,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP desativado com sucesso
@@ -6688,11 +6749,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Erro ao desativar TOTP
@@ -7482,7 +7543,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8067,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Impressão falhou.
@@ -8014,7 +8075,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Erro ao carregar o documento para impressão.
@@ -8022,11 +8083,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Ocorreu um erro ao carregar tiff:
@@ -8106,7 +8167,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Campos personalizados
@@ -8670,6 +8731,14 @@
Selecionar todos
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8755,6 @@
Nenhum
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Mostrar
-
Sort
@@ -8798,7 +8855,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9075,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Título & conteúdo
@@ -9026,7 +9083,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Tipo de arquivo
@@ -9034,7 +9091,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Mais parecido
@@ -9042,7 +9099,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
igual a
@@ -9050,7 +9107,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
está vazio
@@ -9058,7 +9115,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
não está vazio
@@ -9066,7 +9123,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
maior que
@@ -9074,7 +9131,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
menor que
@@ -9082,7 +9139,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondente:
@@ -9090,7 +9147,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sem correspondente
@@ -9098,7 +9155,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Tipo de documento:
@@ -9106,7 +9163,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sem tipo de documento
@@ -9114,7 +9171,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Caminho de armazenamento:
@@ -9122,7 +9179,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Sem o caminho de armazenamento
@@ -9130,7 +9187,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9195,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sem etiquetas
@@ -9146,7 +9203,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Consulta de campos personalizados
@@ -9154,7 +9211,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Título:
@@ -9162,7 +9219,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
NSA:
@@ -9170,7 +9227,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Proprietário:
@@ -9178,7 +9235,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
@@ -9186,7 +9243,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Sem um proprietário
@@ -9572,7 +9629,7 @@
src/app/components/manage/mail/mail.component.html
143
- View Processed Mail
+ Ver e-mails processados
No mail rules defined.
@@ -9766,7 +9823,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
@@ -9776,7 +9833,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Processed Mail for
+ E-mails processados para
No processed email messages found.
@@ -9784,7 +9841,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+ Nenhuma mensagem de e-mail processada encontrada.
Received
@@ -9792,7 +9849,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ Recebido
Processed
@@ -9800,7 +9857,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Processed
+ Processado
Processed mail(s) deleted
@@ -9808,7 +9865,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ E-mail(s) processado(s) excluído(s)
Filter by:
@@ -9954,7 +10011,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissões atualizadas com sucesso
@@ -9962,7 +10019,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Esta operação irá apagar permanentemente todos os objetos.
@@ -9970,7 +10027,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objeto(s) excluído(s) com sucesso.
@@ -9978,7 +10035,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Erro ao apagar objetos
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 8fd38251e..2007ea9b3 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Fechar
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Anterior
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Seguinte
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mês anterior
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Mês seguinte
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Fechar
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Selecionar mês
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Clique para ver.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
O Paperless-ngx pode verificar automaticamente por atualizações
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Como é que isto funciona?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Atualização disponível
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Visualizações da barra lateral atualizadas
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Erro ao atualizar visualizações da barra lateral
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Verdadeiro
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falso
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Não
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Adicionar expressão
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- agora
-
From
@@ -3858,11 +3878,19 @@
Adicionado
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ agora
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Dentro de 1 semana
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Dentro de 1 mês
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Dentro de 3 meses
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Dentro de 1 ano
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Este ano
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Este mês
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Ontem
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Não distinguir entre maiúsculas e minúsculas
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Definir ao tipo de documento através de
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Definir correspondente
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Criar nova conta de utilizador
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Editar conta de utilizador
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp desativado
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Dias de desfasamento
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Valores positivos serão acionados após a data, valores negativos antes da data.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Atribuir título
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Atribuir etiquetas
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Atribuir responsável
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Não atribuído
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Selecionar todos
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Nenhum
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Título & conteúdo
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Semelhantes a
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
é igual a
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
está vazio
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
não está vazio
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
é maior que
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
é menor que
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Sem correspondente
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Sem tipo de documento
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Sem caminho de armazenamento
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Sem etiquetas
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Título:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
NSA:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Dono:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Erro ao atualizar permissões
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 32f2ddc2d..3b5f99bd6 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Închide
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Anterior
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Următor
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Luna precedentă
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Luna următoare
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Închide
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Selectați luna
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Click pentru a vizualiza.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Sistemul poate verifica automat actualizările
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Cum funcţionează?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Actualizare disponibilă
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Vizualizări bară laterală actualizate
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Eroare la actualizarea vizualizărilor barei laterale
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- acum
-
From
@@ -3858,11 +3878,19 @@
Adăugat
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ acum
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Ignoră majusculele
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Assign document type
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Assign correspondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Crează un nou cont de utilizator
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Editează contul de utilizator
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtru nume fișier
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Aplică la documentele care se potrivesc cu acest nume de fișier. Wildcards cum ar fi *.pdf sau *factura* sunt permise. Masca insensibilă.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtrare surse
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtrare cale
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Regulă filtrare e-mail
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Aplică la documentele consumate prin această regulă de e-mail.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nealocate
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Selectează tot
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
None
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Arată
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titlu si conținut
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Asemănătoare
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
equals
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
is empty
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
is not empty
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
greater than
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
less than
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Fără corespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Fară tip
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Without storage path
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Fară etichete
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titlu:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
Aviz prealabil de expediție:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Without an owner
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 21ba8a2b9..76e56345f 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Закрыть
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Предыдущий
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Следующий
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Предыдущий месяц
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Следующий месяц
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
ЧЧ
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Закрыть
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Выберите месяц
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Нажмите для просмотра.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx может автоматически проверять наличие обновлений
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Как это работает?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Доступно обновление
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Обновлена боковая панель
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Ошибка при обновлении боковой панели
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Произошла ошибка при сохранении настроек проверки обновлений.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Верно
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Ложное
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Поиск документов...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Не
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Добавить запрос
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Добавить выражение
@@ -3798,18 +3830,6 @@
Относительные даты
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- сейчас
-
From
@@ -3858,11 +3878,19 @@
Добавлено
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ сейчас
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
В течение 1 недели
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
В течение 1 месяца
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
В течении 3-х месяцев
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
В течение 1 года
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
В этом году
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
В этом месяце
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Вчера
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Без учёта регистра
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Назначить тип документа
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Назначить корреспондента
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Создать новую учетную запись пользователя
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Редактировать учетную запись пользователя
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp деактивирован
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Ошибка деактивации Totp
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Тип триггера
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Задайте смещение запланированного триггера и какое поле даты использовать.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Дни смещения
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Положительные значения будут срабатывать после даты, а отрицательные - перед ней.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Относительно
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Пользовательское поле
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Пользовательское поле, чтобы использовать для даты.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Повторяющееся
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Триггер повторяется.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Повторяющиеся дни интервала
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Повторять триггер каждые n дней.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Триггер для документов, соответствующих всем фильтрам указанным ниже.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Фильтр имя файла
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Обрабатывать только документы, которые полностью совпадают с именем файла. Маски, например *.pdf или *счет*, разрешены. Не учитывает регистр.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Фильтр источников
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Фильтр пути
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Обрабатывать только документы, которые соответствуют данному пути. Маски, указанные как *, разрешены. Допускается регистр.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Фильтр почтовых правил
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Обрабатывать только документы, добавленные через это почтовое правило.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Алгоритм подбора содержимого
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Шаблон подбора содержимого
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Тип действия
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Присвоить заголовок
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Может содержать некоторые заполнители, смотрите <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацию</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Назначить метки
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Назначить путь хранения
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Назначить пользовательские поля
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Назначить владельца
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Назначить права для просмотра
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Назначить права для редактирования
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Удалить теги
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Удалить всё
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Удалить корреспондентов
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Удалить типы документов
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Удалить пути хранения
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Удалить пользовательские поля
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Удалить владельцев
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Удалить разрешения
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Просмотр разрешений
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Изменить разрешения
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Тема письма
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Текст письма
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Получатели письма
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Прикрепить документ
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL вебхука
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Использовать параметры для тела веб-хука
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Отправить webhook загрузку как JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Параметры вебхука
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Тело веб хука
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
HTTP-заголовки вебхука
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Включать документ
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не назначено
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Открыть фильтр
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Профиль успешно обновлен
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Ошибка при сохранении профиля
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Ошибка создания токена авторизации
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Ошибка при отключении стороннего сервиса
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Ошибка получения настроек TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP успешно активирован
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Ошибка активации TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP успешно деактивирован
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Ошибка деактивации TOTP
@@ -7030,7 +7090,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- WebSocket Connection
+ Подключение WebSocket
OK
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Произошла ошибка при загрузке tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Пользовательские поля
@@ -8669,6 +8729,14 @@
Выбрать всё
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8685,18 +8753,6 @@
Отсутствует
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Показать
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Название и содержимое
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Тип файла
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Больше похожих
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
совпадает с
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
не заполнено
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
не является пустым
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
больше чем
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
меньше чем
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Корреспондент:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Без корреспондента
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Тип документа:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Без типа документа
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Путь хранения:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Без пути хранения
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Тег:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Без тегов
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Запрос пользовательских полей
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Название:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
Архивный номер:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Владелец:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Владелец не в:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Без владельца
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Ошибка обновления прав доступа
@@ -9807,7 +9863,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ Обработанная почта удалена
Filter by:
@@ -9953,7 +10009,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Права доступа успешно обновлены
@@ -9961,7 +10017,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Эта операция окончательно удалит все объекты.
@@ -9969,7 +10025,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Объекты успешно удалены
@@ -9977,7 +10033,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Ошибка при удалении объектов
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index f520d78aa..b7f2f64ad 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zavrieť
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Predchádzajúci
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Ďalší
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Predchádzajúci mesiac
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Nasledujúci mesiac
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zavrieť
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Vyberte mesiac
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klikni pre zobrazenie.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx môže automaticky kontrolovať aktualizácie
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Ako to funguje?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Aktualizácia je k dispozícii
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- teraz
-
From
@@ -3858,11 +3878,19 @@
Pridané
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ teraz
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Nerozlišuje veľké a malé písmená
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Priradiť typ dokumentu
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Priradiť odosielateľa
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Vytvoriť nový účet používateľa
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Upraviť účet používateľa
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Odstrániť typy dokumentov
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Odstrániť cesty k úložisku
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nepriradené
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Vybrať všetko
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Žiadny
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Názov & obsah
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Podobné
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
rovná sa
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
je prázdny
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
nie je prázdny
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
väčšie ako
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
menšie ako
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Nepriradené
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Nepriradené
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Nepriradené
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Nepriradené
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Názov:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Vlastník:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Vlastník nie je:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Bez vlastníka
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index ddc747dbf..2fa2371c5 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zapri
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Prejšnji
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Naslednji
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Prejšnji mesec
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Naslednji mesec
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zapri
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Izberi mesec
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klikni za ogled.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx lahko samodejno preveri za posodobitve
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Kako to deluje?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Posodobitev na voljo
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Posodobljeni pogledi v stranski vrstici
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Napaka pri posodabljanju pogledov v stranski vrstici
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Resnično
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Neresnično
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Išči dokumente ...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Ne
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Dodaj poizvedbo
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Dodaj izraz
@@ -3798,18 +3830,6 @@
Relativni datumi
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- zdaj
-
From
@@ -3858,11 +3878,19 @@
Dodano
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ zdaj
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
V 1 tednu
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
V 1 mesecu
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
V 3 mesecih
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
V 1 letu
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
To leto
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Ta mesec
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Včeraj
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Prejšnji teden
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Prejšnji mesec
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Prejšnje četrtletje
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Prejšnje leto
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Brez razlikovanje velikosti črk
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Dodeli vrsto dokumenta
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Dodeli dopisnika
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Ustvari nov uporabniški račun
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Uredi uporabniški račun
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Topp deaktiviran
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Deaktivacija Totp ni uspela
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Vrstra sprožilca
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Nastavite načrtovani odmik sprožilca in katero datumsko polje želite uporabiti.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Izravnalni dnevi
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Pozitivne vrednosti se bodo sprožile po datumu, negativne vrednosti pa pred njim.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Glede na
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Polje po meri
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Polje po meri za uporabo za datum.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Ponavljajoče se
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Sprožilec se ponavlja.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ponavljajoči se intervalni dnevi
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Sprožilec ponovite vsakih n dni.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Sprožilec za dokumente, ki ustrezajo vsem spodnjim kriterijem.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtriraj imena datotek
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Uporabi za dokumente, ki ustrezajo temu imenu datoteke. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljivo na velikost črk.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtriraj vire
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtriraj pot
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Uporabi za dokumente, ki ustrezajo tej poti. Možna uporaba * nadomestnega znaka. Normalizirano glede na velike in male črke.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filtriraj e-poštna pravila
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Uporabi za dokumente, zajete prek tega e-poštnega pravila.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritem za ujemanje vsebine
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Vzorec za ujemanje vsebine
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Napredni filtri
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Dodaj filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
Ni definiranih naprednih filtrov poteka dela.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Dokončajte konfiguracijo poizvedbe po polju po meri
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tip akcije
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Dodeli naslov
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Lahko vključuje nekaj vzorčnih vrednosti, preverite <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentacijo</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Dodeli oznake
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Dodeli pot shrambe
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Dodeli polja po meri
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Določi lastnika
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Dodeli dovoljenje za vpoglede
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Dodeli dovoljenje za urejanje
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Odstrani oznake
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Odstrani vse
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Odstrani dopisnike
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Odstrani vrste dokumentov
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Odstrani poti do shrambe
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Odstrani polja po meri
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Odstrani lastnike
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Odstrani dovoljenja
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Ogled dovoljenj
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Uredi dovoljenja
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Zadeva e-pošte
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Telo e-pošte
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Prejemniki e-pošte
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Priloži dokument
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL spletnega kavlja
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Uporabite parametre za telo spletnega kavlja
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Pošlji koristni delež spletnega kavlja kot JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parametri spletnega kavlja
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Telo spletnega kavlja
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Glave spletnega kavlja
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Vključi dokument
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ni dodeljeno
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Odpri filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil uspešno posodobljen
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Napaka pri shranjevanju profila
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Napaka pri generiranju avtorizacijskega žetona
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Napaka pri odstranjevanju računa družabnega omrežja
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Napaka pri pridobivanju nastavitev TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP je bil uspešno aktiviran
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Napaka pri aktiviranju TOTP-ja
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP je bil uspešno deaktiviran
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Napaka pri deaktiviranju TOTP-ja
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Tiskanje ni uspelo.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Napaka pri nalaganju dokumenta za tiskanje.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Pri nalaganju datoteke tiff je prišlo do napake:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Polja po meri
@@ -8670,6 +8730,14 @@
Izberite vse
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Izberite:
+
None
@@ -8686,18 +8754,6 @@
Brez
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Prikaži
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Naslov & vsebina
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Vrsta datoteke
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Bolj podobno
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
je enako
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
je prazno
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
ni prazno
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
večje kot
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
manj kot
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Dopisnik:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Brez dopisnika
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Vrsta dokumenta:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Brez vrste dokumenta
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Pot shranjevanja:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Brez poti shrambe
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Oznaka:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Brez kakršne koli oznake
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Poizvedba po poljih po meri
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Naslov:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Lastnik:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Lastnika ni v:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Brez lastnika
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Napaka pri posodabljanju dovoljenj
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Dovoljenja so bila uspešno posodobljena
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
To dejanje bo dokončno izbrisalo vse elemente.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Elementi uspešno izbrisani
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Napaka pri brisanju elementov
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index dbfda8b75..3404a03a4 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Zatvori
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Prethodni
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Sledeći
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Prethodni mesec
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Naredni mesec
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Zatvori
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Odaberi mesec
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klik za prеglеd.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx može automatski da proveri da li postoje ažuriranja
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Kako ovo radi?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Dostupno jе ažuriranjе
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Prikazi bočne trake su ažurirani
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Greška pri ažuriranju prikaza bočne trake
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Došlo je do greške prilikom čuvanja podešavanja.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Tačno
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Netačno
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Pretraži dokumenta...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Nije
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Dodaj upit
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Dodaj izraz
@@ -3798,18 +3830,6 @@
Relativni datumi
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- sada
-
From
@@ -3858,11 +3878,19 @@
Dodato
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ sada
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
U roku od 1 nedelje
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
U roku od mesec dana
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
U roku od tri meseca
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
U roku od godinu dana
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Ove godine
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Ovaj mesec
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Juče
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Neosetljivo na mala i velika slova
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Dodeli tip dokumenta
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Dodeli korespondenta
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Kreirajte novi korisnički nalog
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Izmeni korisnički nalog
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp je deaktiviran
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Deaktivacija Totp-a neuspešna
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tip okidača
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Podesi zakazano odlaganje okidača i koje polje datuma koristiti.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Dani za pomeranje
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Pozitivne vrednosti će biti primenjene nakon datuma, a negativne vrednosti pre.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relativno u odnosu na
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Prilagođeno polje
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Prilagođeno polje za upotrebu datuma.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Ponavljajući
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Okidač je ponavljajući.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Interval ponavljanja u danima
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Ponavljajte okidač svakih n dana.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Pokreni za dokumenta koja se poklapaju sa svim filterima navedenim u nastavku.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filtriraj ime fajla
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Primeni na dokumente koji odgovaraju ovom imenu fajla. Dozvoljeni su specijalni znakovi kao što su *.pdf ili *faktura*. Neosetljivo na velika i mala slova.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filtriraj izvore
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtriraj putanju
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Primeni na dokumenta koja se poklapaju sa ovom putanjom. Specijalni znakovi * su dozvoljeni. Obrati pažnju na velika i mala slova.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filtriraj pravilo za imejl
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Primeni na dokumentima koji se obrađuju putem ovog pravila za imejl.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Algoritam za prepoznavanje sadržaja
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Obrazac za prepoznavanje sadržaja
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Napredni filteri
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Dodaj filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
Nisu definisani napredni filteri toka posla.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Dovršite konfiguraciju upita prilagođenog polja.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Tip radnje
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Dodeli naslov
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Može uključivati neke placeholders, pogledaj <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentaciju</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Dodeli oznake
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Dodeli putanju skladišta
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Dodeli dodatno polje
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Dodeli vlasnika
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Dodeli dozvolu za prikaz
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Dodeli dozvolu za izmenu
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Ukloni oznake
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Ukloni sve
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Ukloni korespondente
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Ukloni tipove dokumenta
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Ukloni putanju skladištenja
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Ukloni prilagođenja polja
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Ukloni vlasnike
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Ukloni dozvole
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Pregledaj dozvole
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Izmeni dozvole
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Naslov imejla
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Telo imejla
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Primaoca imejla
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Priloži dokument
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL webhook-a
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Koristi parametre za telo webhook-a
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Pošalji payload webhook-a kao JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Parametri webhook-a
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Telo webhook-a
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Zaglavlja webhook-a
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Uključi dokument
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nije dodeljen
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Otvori filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil je uspešno ažuriran
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Greška prilikom čuvanja profila
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Greška prilikom generisanja auth tokena
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Greška prilikom isključivanja naloga
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Greška pri preuzimanju TOTP podešavanja
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP je uspešno aktiviran
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Greška pri aktiviranju TOTP-a
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP je uspešno deaktiviran
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Greška pri deaktiviranju TOTP-a
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Štampanje nije uspelo.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Greška pri učitavanju dokumenta za štampanje.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
Došlo je do greške prilikom učitavanja TIFF-a:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Dodatna polja
@@ -8671,6 +8731,14 @@
Odaberi sve
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Odaberi:
+
None
@@ -8687,18 +8755,6 @@
Nijedan
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Prikaži
-
Sort
@@ -8799,7 +8855,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9019,7 +9075,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Naslov i sadržaj
@@ -9027,7 +9083,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Vrsta fajla
@@ -9035,7 +9091,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Slično
@@ -9043,7 +9099,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
jednako
@@ -9051,7 +9107,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
je prazan
@@ -9059,7 +9115,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
nije prazan
@@ -9067,7 +9123,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
veće od
@@ -9075,7 +9131,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
manje od
@@ -9083,7 +9139,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Korespondent:
@@ -9091,7 +9147,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Bez korespondenta
@@ -9099,7 +9155,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Vrsta dokumenta:
@@ -9107,7 +9163,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Bez tipa dokumenta
@@ -9115,7 +9171,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Putanja skladišta:
@@ -9123,7 +9179,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Bez putanje skladišta
@@ -9131,7 +9187,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Oznaka:
@@ -9139,7 +9195,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Bez oznake
@@ -9147,7 +9203,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Upit za prilagođeno polje
@@ -9155,7 +9211,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Naslov:
@@ -9163,7 +9219,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9171,7 +9227,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Vlasnik:
@@ -9179,7 +9235,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Vlasnik nije:
@@ -9187,7 +9243,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Bez vlasnika
@@ -9767,7 +9823,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Greška prilikom izmene dozvola
@@ -9955,7 +10011,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Dozvole su uspešno ažurirane
@@ -9963,7 +10019,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Ova operacija će trajno obrisati sve objekte.
@@ -9971,7 +10027,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objekti su uspešno obrisani
@@ -9979,7 +10035,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Greška prilikom brisanja objekata
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index ef55ca67c..354d164ff 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Stäng
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Föregående
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Nästa
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Föregående månad
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Nästa månad
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Stäng
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Välj månad
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Klicka för att visa.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx kan automatiskt söka efter uppdateringar
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Hur fungerar detta?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Uppdatering tillgänglig
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Ett fel uppstod när uppdateringskontrollen skulle sparas.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Sant
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Falskt
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Ej
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- nu
-
From
@@ -3858,11 +3878,19 @@
Tillagd
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ nu
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Ej skiftlägeskänsligt
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Tilldela dokumenttyp
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Tilldela korrespondent
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Skapa nytt användarkonto
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Redigera användare
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Tilldela titel
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Tilldelar taggar
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Tilldela sökväg för lagring
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Tilldela anpassade fält
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Tilldela ägare
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Tilldela visningsrättigheter
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Tilldela redigeringsbehörigheter
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Ta bort taggar
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Ta bort allt
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Ta bort korrespondenter
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Ta bort dokumenttyper
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Ta bort lagringssökvägar
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Tilldela anpassade fält
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Ta bort ägare
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Ta bort behörigheter
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Visa behörigheter
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Redigera behörigheter
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Inte tilldelad
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
Välj alla
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Ingen
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Visa
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Titel & innehåll
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Mer som
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
är lika med
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
är tom
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
är inte tom
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
större än
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
mindre än
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Utan korrespondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Utan dokumenttyp
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Utan lagringsplats
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Utan tagg
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Titel:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Ägare:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Ägare ej i:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Utan ägare
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index 1f5f76038..c7c9f651c 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
ปิด
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
ก่อนหน้า
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
ถัดไป
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
เดือนก่อนหน้า
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
เดือนถัดไป
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
ชช
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
ปิด
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
เลือกเดือน
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
คลิกเพื่อดู
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx can automatically check for updates
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
ระบบนี้ทำงานยังไง?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
มีการอัพเดท
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Sidebar views updated
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Error updating sidebar views
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
An error occurred while saving update checking settings.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
True
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
False
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Search docs...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Not
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Add query
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Add expression
@@ -3798,18 +3830,6 @@
Relative dates
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- ตอนนี้
-
From
@@ -3858,11 +3878,19 @@
นำเข้า
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ ตอนนี้
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Within 1 week
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Within 1 month
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Within 3 months
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Within 1 year
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
This year
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
This month
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Yesterday
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
กำหนดประเภทเอกสาร
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
กำหนดผู้เขียน
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Create new user account
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
แก้ไขบัญชีผู้ใช้งาน
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp deactivated
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Trigger type
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Relative to
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Custom field to use for date.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Recurring
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Trigger for documents that match all filters specified below.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Filter filename
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Filter sources
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filter path
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Filter mail rule
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Apply to documents consumed via this mail rule.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Content matching algorithm
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Content matching pattern
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Action type
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Assign title
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Assign tags
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Assign storage path
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Assign custom fields
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Assign owner
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Assign view permissions
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Assign edit permissions
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Remove tags
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Remove all
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Remove correspondents
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Remove document types
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Remove storage paths
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Remove custom fields
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Remove owners
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Remove permissions
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
View permissions
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Edit permissions
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Email subject
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Email body
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Email recipients
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Attach document
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Use parameters for webhook body
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook params
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook headers
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Include document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
ไม่กำหนด
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Open filter
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profile updated successfully
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Error saving profile
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Error generating auth token
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Error disconnecting social account
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Error fetching TOTP settings
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP activated successfully
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Error activating TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP deactivated successfully
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Error deactivating TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Custom fields
@@ -8670,6 +8730,14 @@
เลือกทั้งหมด
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
ไม่มี
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
ชื่อ & เนื้อหา
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
File type
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
อื่น ๆ ที่คล้ายกัน
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
เท่ากับ
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
ว่างเปล่า
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
ไม่ว่างเปล่า
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
มากกว่า
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
น้อยกว่า
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Without correspondent
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Without document type
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
ไม่มีพาธจัดเก็บ
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
ไม่มีแท็กใด ๆ
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Title:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Owner:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Owner not in:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
ไม่มีเจ้าของ
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Error updating permissions
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Permissions updated successfully
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
This operation will permanently delete all objects.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Objects deleted successfully
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Error deleting objects
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 9dd81c3f1..189e8ac94 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Kapat
@@ -13,16 +13,16 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
- / Slaytı
+ / Slaytı
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Önceki
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Sonraki
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Önceki ay
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Sonraki ay
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Kapat
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Ay seçin
@@ -90,7 +90,7 @@
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Kenar çubuğu görünümleri güncellendi
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Kenar çubuğu görünümlerini güncellerken hata oluştu
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Güncelleme denetimi ayarları kaydedilirken bir hata oluştu.
@@ -3396,7 +3428,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
249
- Successfully updated object.
+ Nesne başarıyla güncellendi.
Error occurred saving object.
@@ -3408,7 +3440,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
252
- Error occurred saving object.
+ Nesneyi kaydederken bir hatayla karşılașıldı.
Clear All
@@ -3508,7 +3540,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
22
- Use metadata from:
+ Şu kaynaklardan meta verileri kullan:
Regenerate all metadata
@@ -3516,7 +3548,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
24
- Regenerate all metadata
+ Tüm metaverileri yeniden oluştur
Try to include archive version in merge for non-PDF files
@@ -3524,7 +3556,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
32
- Try to include archive version in merge for non-PDF files
+ PDF olmayan dosyalar için birleştirme işlemine arşiv sürümünü dahil etmeye çalış
Delete original documents after successful merge
@@ -3532,7 +3564,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
36
- Delete original documents after successful merge
+ Birleştirme işlemi başarıyla tamamlandıktan sonra orijinal belgeleri sil
Note that only PDFs will be included.
@@ -3540,7 +3572,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
39
- Note that only PDFs will be included.
+ Yalnızca PDF dosyaları dahil edilecektir.
Note that only PDFs will be rotated.
@@ -3548,7 +3580,7 @@
src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html
25
- Note that only PDFs will be rotated.
+ Yalnızca PDF dosyaları döndürülecektir.
View
@@ -3608,7 +3640,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts
94
- Alan kaydedilirken hata oluştu.
+ Alan kaydedilirken bir hata meydana geldi.
Today
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,13 +3718,13 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
- Doğru
+ Evet
False
@@ -3702,23 +3734,23 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
- Yanlış
+ Hayır
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Belgelerde ara...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Değil
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Sorgu Ekle
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
İfade Ekle
@@ -3798,18 +3830,6 @@
Göreceli tarihler
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- şimdi
-
From
@@ -3858,11 +3878,19 @@
Eklendi
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ şimdi
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
1 hafta içinde
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
1 ay içinde
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
3 ay içinde
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
1 yıl içinde
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Bu yıl
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Bu ay
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Dün
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Geçen Hafta
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Geçtiğimiz ay
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Geçen çeyrek
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Geçen yıl
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Büyük / küçük harf duyarsız
@@ -4036,7 +4096,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
44
- 3-character currency code
+ 3-harfli para birimi kodu
Use locale
@@ -4044,7 +4104,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
44
- Use locale
+ Yerel kullan
Create new custom field
@@ -4052,7 +4112,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
118
- Create new custom field
+ Yeni bir özel alan oluştur
Edit custom field
@@ -4060,7 +4120,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
122
- Edit custom field
+ Özel alanı düzenle
Create new document type
@@ -4100,7 +4160,7 @@
src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts
36
- Create new user group
+ Yeni bir kullanıcı grubu oluştur
Edit user group
@@ -4350,7 +4410,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
42
- Consumption scope
+ Tüketim kapsamı
See docs for .eml processing requirements
@@ -4358,7 +4418,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
42
- See docs for .eml processing requirements
+ .eml işleme gereksinimleri için kullanma kılavuzuna bakınız
Attachment type
@@ -4382,7 +4442,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
47
- Include only files matching
+ Yalnızca şu ile eşleşen dosyaları dahil et
Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
@@ -4394,7 +4454,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
48
- Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
+ İsteğe bağlı. Joker karakterler, örneğin *.pdf veya *fatura* olarak kullanılabilir. Virgülle ayrılmış liste olabilir. Büyük/küçük harf duyarlı değildir.
Exclude files matching
@@ -4442,7 +4502,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
59
- Kural ile Sahip ata
+ Kuraldan sahip ata
Assign document type
@@ -4452,7 +4512,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Dosya türü ata
@@ -4472,7 +4532,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Muhatap ata
@@ -4484,7 +4544,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4546,7 +4606,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
57
- Process message as .eml and attachments separately
+ Mesajı .eml olarak ve ekleri ayrı ayrı işle
System default
@@ -4702,7 +4762,7 @@ tüm krite
src/app/components/manage/storage-path-list/storage-path-list.component.ts
51
- Yol
+ Dizin
See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>.
@@ -4710,7 +4770,7 @@ tüm krite
src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
13
- İlgili belgeyi "<a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>" incele</a>.
+ İlgili belgeyi <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>incele</a>.
Preview
@@ -4794,7 +4854,7 @@ tüm krite
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Parent
+ Üst düğüm
Inbox tag
@@ -4956,7 +5016,7 @@ tüm krite
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Yeni bir kullanıcı hesabı oluştur
@@ -4964,7 +5024,7 @@ tüm krite
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Kullanıcı hesabını düzenle
@@ -4972,7 +5032,7 @@ tüm krite
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Çift faktör Deaktif
@@ -4980,11 +5040,11 @@ tüm krite
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Çift faktör deaktivasyon hatası
@@ -5048,7 +5108,7 @@ tüm krite
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Tetiklenme tipi
@@ -5056,7 +5116,7 @@ tüm krite
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Zamanlanmış tetikleyici ofsetini ve hangi tarih alanının kullanılacağını ayarlayın.
@@ -5064,7 +5124,7 @@ tüm krite
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Gün ofseti
@@ -5072,23 +5132,23 @@ tüm krite
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
- Positive values will trigger after the date, negative values before.
+ Pozitif değerler tarihten sonra, negatif değerler tarihten önce tetiklenecektir.
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
- Relative to
+ Şunun akrabası
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Özel alan
@@ -5096,7 +5156,7 @@ tüm krite
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Tarih için kullanılacak özel alan.
@@ -5104,47 +5164,47 @@ tüm krite
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
- Recurring
+ Tekrarlanan
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
- Trigger is recurring.
+ Tetikleyici tekrar ediyor.
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
- Recurring interval days
+ Tekrarlayan aralık günleri
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
- Repeat the trigger every n days.
+ Tetiği her "n" günde bir tekrarlayın.
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
- Trigger for documents that match all filters specified below.
+ Aşağıda belirtilen tüm filtrelerle eşleşen belgeler için tetikleyici.
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Dosya adı filtrele
@@ -5152,7 +5212,7 @@ tüm krite
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Bu dosya adıyla eşleşen belgelere uygulayın, *.pdf veya *fatura* gibi joker karakterlere de izin verilir. Büyük/küçük harf fark etmeksizin.
@@ -5160,15 +5220,15 @@ tüm krite
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
- Filter sources
+ Kaynakları filtrele
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Filtre Yolu
@@ -5176,15 +5236,15 @@ tüm krite
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Bu dizine uyan belgelere uygulanır. * olarak belirtilen joker karakterlere izin verilir. Büyük-küçük harf duyarsızdır.</a>
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Posta kuralı filtrele
@@ -5192,71 +5252,71 @@ tüm krite
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
- Apply to documents consumed via this mail rule.
+ Bu posta kuralı aracılığıyla kullanılan belgelere uygulayın.
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
- Content matching algorithm
+ İçerik eşleştirme algoritması
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
- Content matching pattern
+ İçerik eşleştirme modeli
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ Gelişmiş Filtreler
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ Filtre ekle
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ Gelişmiş bir iş akışı filtresi tanımlanmamıştır.
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ Özel alan sorgu yapılandırmasını tamamlayın.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
- Action type
+ Eylem türü
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Başlık at
@@ -5264,15 +5324,15 @@ tüm krite
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
- Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
+ Bazı yer tutucular içerebilir, bkz. <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokümantasyon</a>.
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Etiketler ata
@@ -5280,31 +5340,31 @@ tüm krite
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
- Assign storage path
+ Depolama dizini atayın
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
- Assign custom fields
+ Özel alanları atayın
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
- Sahip Ata
+ Sahip ata
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Yeni görüntüleme izni ata
@@ -5312,7 +5372,7 @@ tüm krite
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Yeni değiştire izni ata
@@ -5320,47 +5380,47 @@ tüm krite
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
- Remove tags
+ Etiketleri kaldır
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
- Remove all
+ Tümünü kaldır
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Muhatapları kaldır
@@ -5368,63 +5428,63 @@ tüm krite
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
- Remove document types
+ Tüm belge tiplerini kaldır
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
- Remove storage paths
+ Tüm depolama dizinlerini kaldır
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
- Remove custom fields
+ Özel alanları kaldır
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
- Remove owners
+ Tüm sahipleri kaldır
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
- Remove permissions
+ İzinleri kaldır
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
- View permissions
+ İzinleri görüntüle
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
- Edit permissions
+ İzinleri düzenle
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
E-posta konusu
@@ -5432,7 +5492,7 @@ tüm krite
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
E-posta gövdesi
@@ -5440,7 +5500,7 @@ tüm krite
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
E-posta alıcıları
@@ -5448,7 +5508,7 @@ tüm krite
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Belge ekle
@@ -5456,7 +5516,7 @@ tüm krite
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook url
@@ -5464,23 +5524,23 @@ tüm krite
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
- Use parameters for webhook body
+ Webhook gövdesi için parametreleri kullanın
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
- Send webhook payload as JSON
+ Webhook yükünü JSON olarak gönder
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook parametreleri
@@ -5488,7 +5548,7 @@ tüm krite
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook gövdesi
@@ -5496,7 +5556,7 @@ tüm krite
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook başlıkları
@@ -5504,7 +5564,7 @@ tüm krite
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Belge içeriyor
@@ -5566,7 +5626,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
109
- İşleme başladı
+ Tüketim işlemi başladı
Document Added
@@ -5622,7 +5682,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ Bu herhangi etiketlere sahip
Has all of these tags
@@ -5630,7 +5690,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ Bu tüm etiketlere sahip
Does not have these tags
@@ -5638,7 +5698,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ Bu etiketlere sahip değil
Has correspondent
@@ -5654,7 +5714,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ Muhatablara sahip değil
Has document type
@@ -5662,7 +5722,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
240
- Has document type
+ Belge türüne sahip
Does not have document types
@@ -5670,7 +5730,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ Belge türlerine sahip değil
Has storage path
@@ -5678,7 +5738,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Has storage path
+ Depolama dizinine sahip
Does not have storage paths
@@ -5686,7 +5746,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ Depolama dizininlerine sahip değil
Matches custom field query
@@ -5694,7 +5754,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ Özel alan sorgusuyla eşleşir
Create new workflow
@@ -5718,7 +5778,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural, =1 {1 Posta Belgesi} other { Posta Belgesi}}
Email address(es)
@@ -5754,7 +5814,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
27
- Use archive version
+ Arşiv sürümünü kullan
Send email
@@ -5770,7 +5830,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ Bazı e-posta sunucuları büyük ekleri olan mesajları reddedebilir.
Email sent
@@ -5786,7 +5846,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ Belgeleri e-posta ile gönderirken bir hatayla karşılașıldı
Error emailing document
@@ -5794,7 +5854,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
70
- Belgeyi postalarken hata oluştu
+ Belgeyi postalarken bir hata meydana geldi
Include
@@ -5860,7 +5920,7 @@ tüm krite
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Atanmadı
@@ -5869,7 +5929,7 @@ tüm krite
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
filtresini aç
@@ -5949,7 +6009,7 @@ tüm krite
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6116,7 +6176,7 @@ tüm krite
src/app/components/common/input/switch/switch.component.html
39
- Note: value has not yet been set and will not apply until explicitly changed
+ Not: Değer henüz belirlenmemiştir ve değiştirilene kadar geçerli olmayacaktır
Add tag
@@ -6228,7 +6288,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Add / remove document split here
+ Burada belge ayrıcı ekle/kaldır
Split here
@@ -6260,7 +6320,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copy metadata
+ Meta veriyi kopyala
Delete original
@@ -6432,7 +6492,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
33
- API Auth Token
+ API Yetkilendirme Tokeni
Copy
@@ -6480,7 +6540,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
47
- Regenerate auth token
+ Kimlik doğrulama tokenini yeniden oluştur
Copied!
@@ -6504,7 +6564,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
56
- Warning: changing the token cannot be undone
+ Uyarı: Token değiştirilmesi geri alınamaz
Connected social accounts
@@ -6512,7 +6572,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
62
- Connected social accounts
+ Bağlı sosyal hesaplar
Set a password before disconnecting social account.
@@ -6520,7 +6580,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
66
- Set a password before disconnecting social account.
+ Sosyal medya hesabını kaldırmadan önce bir şifre belirleyin.
Disconnect
@@ -6536,7 +6596,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
74
- Disconnect social account
+ sosyal hesabı kaldır
Warning: disconnecting social accounts cannot be undone
@@ -6544,7 +6604,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
84
- Warning: disconnecting social accounts cannot be undone
+ Uyarı: sosyal hesapların sistemden kaldırılması geri alınamaz
Connect new social account
@@ -6552,7 +6612,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
89
- Connect new social account
+ Yeni sosyal hesap bağla
Scan the QR code with your authenticator app and then enter the code below
@@ -6560,7 +6620,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
114
- Scan the QR code with your authenticator app and then enter the code below
+ Doğrulama uygulamanızla QR kodunu tarayın ve ardından aşağıya kodu girin
Authenticator secret
@@ -6568,7 +6628,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
117
- Authenticator secret
+ Kimlik doğrulama sırrı
You can store this secret and use it to reinstall your authenticator app at a later time.
@@ -6576,7 +6636,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
118
- You can store this secret and use it to reinstall your authenticator app at a later time.
+ Bu gizli bilgiyi saklayabilir ve daha sonra kimlik doğrulama uygulamanızı yeniden yüklemek için kullanabilirsiniz.
Code
@@ -6584,7 +6644,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
121
- Code
+ Kod
Recovery codes will not be shown again, make sure to save them.
@@ -6592,7 +6652,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
140
- Recovery codes will not be shown again, make sure to save them.
+ Kurtarma kodları bir daha gösterilmeyecektir, mutlaka kaydediniz.
Copy codes
@@ -6600,7 +6660,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
158
- Copy codes
+ Kodları kopyala
Emails must match
@@ -6622,7 +6682,7 @@ tüm krite
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Profil başarıyla güncellendi
@@ -6630,73 +6690,73 @@ tüm krite
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
- Error saving profile
+ Profil kaydedilirken bir hata ile karşılaşıldı
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
- Error generating auth token
+ Yetkilendirme tokeni oluştururken bir hatayla karşılaşıldı
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
- Error disconnecting social account
+ Sosyal hesapları kaldırırken bir hata ile karşılaşıldı
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
- Error fetching TOTP settings
+ TOTP ayarları alınırken bir hata ile karşılaşıldı
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
- TOTP activated successfully
+ TOTP başarıyla etkinleştirildi
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
- Error activating TOTP
+ TOTP etkinleştirilirken bir hata ile karşılaşıldı
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
- TOTP deactivated successfully
+ TOTP başarıyla devre dışı bırakıldı
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
- Error deactivating TOTP
+ TOTP devre dışı bırakılırken bir hata ile karşılaşıldı
No existing links
@@ -6704,7 +6764,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
8,10
- No existing links
+ Herhangi bir mevcut link bulunmuyor
Share
@@ -6712,7 +6772,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
32
- Share
+ Paylaş
Share archive version
@@ -6720,7 +6780,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
48
- Share archive version
+ Arşiv sürümünü paylaş
Expires
@@ -6728,7 +6788,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
52
- Expires
+ Son Kullanım Tarihi
1 day
@@ -6740,7 +6800,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
102
- 1 day
+ 1 gün
7 days
@@ -6748,7 +6808,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
26
- 7 days
+ 7 gün
30 days
@@ -6784,7 +6844,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
83
- Linkleri getirirken hata oluştu
+ Linkler alınırken bir hata meydana geldi
days
@@ -6800,7 +6860,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
131
- Linki silerken hata oluştu
+ Linki silerken bir hata meydana geldi
Error creating link
@@ -6808,7 +6868,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
159
- Linki oluşturma hatası
+ Link oluşturulurken bir hata meydana geldi
Environment
@@ -6904,7 +6964,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
76
- Göç Durumu
+ Veritabanı İşlemleri Durumu
Up to date
@@ -6912,7 +6972,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
80
- Up to date
+ Güncel
Latest Migration
@@ -6920,7 +6980,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
85
- Latest Migration
+ En Son Uygulanan Veritabanı İşlemleri
Pending Migrations
@@ -6928,7 +6988,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
87
- Pending Migrations
+ Bekleyen Veritabanı İşlemleri
Tasks Queue
@@ -6936,7 +6996,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
105
- Tasks Queue
+ Görev Sırası
Redis Status
@@ -6952,7 +7012,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
127
- Celery Status
+ Celery'nin Durumu
Health
@@ -6960,7 +7020,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
153
- Health
+ Sağlık
Search Index
@@ -6968,7 +7028,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
157
- Search Index
+ Arama İndeksi
Run Task
@@ -6984,7 +7044,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
245
- Run Task
+ Görevi Çalıştır
Last Updated
@@ -6992,7 +7052,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
184
- Last Updated
+ Son Güncellenme Tarihi
Classifier
@@ -7000,7 +7060,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
189
- Classifier
+ Sınıflandırıcı
Last Trained
@@ -7008,7 +7068,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
218
- Last Trained
+ Son Eğitim Tarihi
Sanity Checker
@@ -7016,7 +7076,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
223
- Sanity Checker
+ Son Geçerlilik Kontrol Edilme Tarihi
Last Run
@@ -7024,7 +7084,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
252
- Last Run
+ Son Çalıştırma
WebSocket Connection
@@ -7032,7 +7092,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- WebSocket Connection
+ Websocket Bağlantısı
OK
@@ -7040,7 +7100,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- OK
+ Tamam
Copy Raw Error
@@ -7048,7 +7108,7 @@ tüm krite
src/app/components/common/toast/toast.component.html
43
- Copy Raw Error
+ Hatayı Olduğu Gibi Kopyala
Hint: saved views can be created from the documents list
@@ -7056,7 +7116,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.html
42
- Hint: saved views can be created from the documents list
+ İpucu: kaydedilmiş görünümler documents list 'den oluşturulabilir
Hello , welcome to
@@ -7064,7 +7124,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
61
- Hello , welcome to
+ Merhaba , hoşgeldiniz
Welcome to
@@ -7072,7 +7132,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
63
- Welcome to
+ Hoş Geldiniz
Dashboard updated
@@ -7080,7 +7140,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
94
- Dashboard updated
+ Kontrol Paneli yenilendi
Error updating dashboard
@@ -7088,7 +7148,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
97
- Error updating dashboard
+ Kontrol panelini yenilerken bir hatayla karşılașıldı
Show all
@@ -7128,7 +7188,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
363
- Filter by document type
+ Belge türüne göre filtrele
Filter by storage path
@@ -7144,7 +7204,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
370
- Filter by storage path
+ Depolama dizinine göre filtrele
Filter by owner
@@ -7152,7 +7212,7 @@ tüm krite
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
74
- Filter by owner
+ Sahibine göre filtrele
Yes
@@ -7184,7 +7244,7 @@ tüm krite
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
149
- No documents
+ Belge yok
Statistics
@@ -7200,7 +7260,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
28
- Go to inbox
+ Gelen kutusuna git
Documents in inbox
@@ -7208,7 +7268,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
29
- Documents in inbox
+ Gelen kutusundaki belgeler
Go to documents
@@ -7216,7 +7276,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
33
- Go to documents
+ Belgelere git
Total documents
@@ -7224,7 +7284,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
34
- Total documents
+ Toplam Belge
Total characters
@@ -7232,7 +7292,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
38
- Total characters
+ Toplam Karakter
Current ASN
@@ -7240,7 +7300,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
43
- Current ASN
+ Mevcut ASN
Other
@@ -7256,7 +7316,7 @@ tüm krite
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
6
- Upload documents
+ Belge veya belgeler yükle
or drop files anywhere
@@ -7264,7 +7324,7 @@ tüm krite
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
7
- or drop files anywhere
+ veya dosyaları herhangi bir yere bırakın
Dismiss completed
@@ -7318,7 +7378,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
2
- Paperless-ngx is running!
+ Paperless-ngx çalışıyor!
You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.
@@ -7326,7 +7386,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
3
- You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below.
+ Belge yüklemeye hazırsınız! Bu web uygulamasının çeşitli özelliklerini kendiniz keşfedin veya aşağıdaki düğmeyi kullanarak hızlı bir tura başlayın.
More detail on how to use and configure Paperless-ngx is always available in the documentation.
@@ -7334,7 +7394,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
4
- More detail on how to use and configure Paperless-ngx is always available in the documentation.
+ Paperless-ngx'in kullanımı ve yapılandırılması hakkında daha fazla bilgiye her zaman dokümantasyon adresinden ulaşabilirsiniz.
Thanks for being a part of the Paperless-ngx community!
@@ -7342,7 +7402,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
7
- Thanks for being a part of the Paperless-ngx community!
+ Paperless-ngx topluluğunun bir parçası olduğunuz için teşekkür ederiz!
Start the tour
@@ -7378,7 +7438,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
7,8
- of
+ 'dan/den
-
@@ -7386,7 +7446,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
11
- -
+ -
+
@@ -7394,7 +7454,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
19
- +
+ +
Download original
@@ -7414,7 +7474,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
91
- Reprocess
+ Yeniden İşle
Print
@@ -7422,7 +7482,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
58
- Print
+ Yazdır
More like this
@@ -7446,7 +7506,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1392
- PDF Editor
+ PDF Düzenleyici
Send
@@ -7454,7 +7514,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
84
- Send
+ Gönder
Previous
@@ -7484,7 +7544,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -7718,7 +7778,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
321,324
- Notes
+ Notlar
History
@@ -7726,7 +7786,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
332
- History
+ Geçmiş
Save & next
@@ -7734,7 +7794,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
369
- Kaydet & sonraki
+ Kaydet ve sonrakine geç
Save & close
@@ -7742,7 +7802,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
372
- Save & close
+ Kaydet ve kapat
Document loading...
@@ -7750,7 +7810,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
382
- Document loading...
+ Belge Yükleniyor...
Enter Password
@@ -7766,7 +7826,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
416,418
- An error occurred loading content:
+ İçerik yüklenirken bir hata ile karşılaşıldı:
Document changes detected
@@ -7774,7 +7834,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
450
- Document changes detected
+ Belge değişiklikler algılandı
The version of this document in your browser session appears older than the existing version.
@@ -7782,7 +7842,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
451
- The version of this document in your browser session appears older than the existing version.
+ Tarayıcı oturumunuzdaki bu belgenin sürümü, mevcut sürümden daha eski görünüyor.
Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
@@ -7790,7 +7850,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
452
- Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
+ Belgeyi buraya kaydetmek, yapılan diğer değişikliklerin üzerine yazabilir. Mevcut sürümü geri yüklemek için değişikliklerinizi geri alın veya belgeyi kapatın.
Ok
@@ -7798,7 +7858,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
454
- Ok
+ Tamam
Next document
@@ -7806,7 +7866,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
580
- Next document
+ Sonraki belge
Previous document
@@ -7814,7 +7874,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
590
- Previous document
+ Önceki belge
Close document
@@ -7834,7 +7894,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
605
- Save document
+ Belgeyi kaydet
Save and close / next
@@ -7842,7 +7902,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
614
- Save and close / next
+ Kaydet, kapat ve bir sonrakine geç
Error retrieving metadata
@@ -7850,7 +7910,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
669
- Metaveri alınırken hata oluştu
+ Metaveri alınırken bir hata meydana geldi
Error retrieving suggestions.
@@ -7858,7 +7918,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
698
- Önerileri getirirken hata oluştu.
+ Öneriler getirilirken bir hata meydana geldi.
Document "" saved successfully.
@@ -7870,7 +7930,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
894
- Document "" saved successfully.
+ "" belgesi başarıyla kaydedildi.
Error saving document ""
@@ -7878,7 +7938,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
900
- Error saving document ""
+ Belgeyi kaydederken bir hata ile karşılaşıldı ""
Error saving document
@@ -7886,7 +7946,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
950
- Error saving document
+ Belge kaydedilirken bir hata ile karşılaşıldı
Do you really want to move the document "" to the trash?
@@ -7894,7 +7954,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
982
- Do you really want to move the document "" to the trash?
+ belgesini gerçekten çöp kutusuna taşımak istiyor musunuz?
Documents can be restored prior to permanent deletion.
@@ -7906,7 +7966,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
754
- Documents can be restored prior to permanent deletion.
+ Belgeler kalıcı olarak silinmeden önce geri yüklenebilir.
Move to trash
@@ -7918,7 +7978,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
756
- Move to trash
+ Çöp kutusuna taşı
Error deleting document
@@ -7926,7 +7986,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1004
- Error deleting document
+ Belge silinirken bir hata meydana geldi
Reprocess confirm
@@ -7938,7 +7998,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
794
- Reprocess confirm
+ Yeniden işlemeyi onayla
This operation will permanently recreate the archive file for this document.
@@ -7946,7 +8006,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1025
- This operation will permanently recreate the archive file for this document.
+ Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.
The archive file will be re-generated with the current settings.
@@ -7954,7 +8014,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1026
- The archive file will be re-generated with the current settings.
+ Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır.
Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
@@ -7962,7 +8022,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1036
- Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content.
+ "" için yeniden işleme işlemi arka planda başlayacaktır. İşlem tamamlandıktan sonra bu belgeyi kapatıp yeniden açtıktan veya yeniden yükledikten sonra yeni içeriği görebilirsiniz.
Error executing operation
@@ -7970,7 +8030,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1047
- Error executing operation
+ İşlemi gerçekleştirirken bir hata ile karşılaşıldı
Error downloading document
@@ -7978,7 +8038,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1096
- Error downloading document
+ Belge indirilirken bir hata meydana geldi
Page Fit
@@ -7986,7 +8046,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1173
- Page Fit
+ Sayfa Sığdır
PDF edit operation for "" will begin in the background.
@@ -7994,7 +8054,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1411
- PDF edit operation for "" will begin in the background.
+ "" için PDF düzenleme işlemleri arka planda başlayacak.
Error executing PDF edit operation
@@ -8002,35 +8062,35 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1423
- Error executing PDF edit operation
+ PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
- Print failed.
+ Yazdırma başarısız oldu.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
- Error loading document for printing.
+ Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
- An error occurred loading tiff:
+ tiff'i yüklenirken bir hata meydana geldi
No entries found.
@@ -8038,7 +8098,7 @@ tüm krite
src/app/components/document-history/document-history.component.html
10
- No entries found.
+ Hiçbir kayıt bulunamadı.
Edit:
@@ -8094,7 +8154,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.html
73
- Filter storage paths
+ Depolama dizinlerine göre filtrele
Custom fields
@@ -8108,9 +8168,9 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
- Custom fields
+ Özel alanlar
Filter custom fields
@@ -8118,7 +8178,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
62
- Filter custom fields
+ Özel alanları filtrele
Set values
@@ -8126,7 +8186,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
70
- Set values
+ Değerleri ayarla
Rotate
@@ -8134,7 +8194,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
94
- Rotate
+ Döndür
Merge
@@ -8142,7 +8202,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
97
- Merge
+ Birleştir
Include:
@@ -8150,7 +8210,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
123
- Include:
+ Dahil et:
Archived files
@@ -8158,7 +8218,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
127
- Archived files
+ Arşivlenen dosyalar
Original files
@@ -8166,7 +8226,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
131
- Original files
+ Orijinal dosyalar
Use formatted filename
@@ -8174,7 +8234,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
136
- Use formatted filename
+ Formatlanmış dosya adını kullan
Error executing bulk operation
@@ -8182,7 +8242,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
290
- Error executing bulk operation
+ Toplu işlemler çalıştırılırken bir hata ile karşılaşıldı
""
@@ -8220,7 +8280,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
405
- Etiket atanmayi doğrulayın
+ Etiket atanmasını onaylayın
This operation will add the tag "" to selected document(s).
@@ -8236,7 +8296,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
416,418
- This operation will add the tags to selected document(s).
+ Bu işlem etiketlerini seçili belge veya belgelere ekleyecektir.
This operation will remove the tag "" from selected document(s).
@@ -8252,7 +8312,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
429,431
- This operation will remove the tags from selected document(s).
+ Bu işlem etiketlerini seçili belge veya belgelerden kaldıracaktır.
This operation will add the tags and remove the tags on selected document(s).
@@ -8316,7 +8376,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
550
- Confirm storage path assignment
+ Depolama dizinlerini atamayı onaylayın
This operation will assign the storage path "" to selected document(s).
@@ -8324,7 +8384,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
552
- This operation will assign the storage path "" to selected document(s).
+ Bu işlem, depolama dizinini, seçilmiş belgeye atayacaktır.
This operation will remove the storage path from selected document(s).
@@ -8332,7 +8392,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
554
- This operation will remove the storage path from selected document(s).
+ Bu işlem belgeden depolama dizinini kaldıracaktır.
Confirm custom field assignment
@@ -8340,7 +8400,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
583
- Confirm custom field assignment
+ Özel alan atamasını onaylayın
This operation will assign the custom field "" to selected document(s).
@@ -8348,7 +8408,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
589
- This operation will assign the custom field "" to selected document(s).
+ Bu işlem, özel alanını, seçilmiş belgeye atayacaktır.
This operation will assign the custom fields to selected document(s).
@@ -8356,7 +8416,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
594,596
- This operation will assign the custom fields to selected document(s).
+ Bu işlem, özel alanlarını, seçilmiş belgeye atayacaktır.
This operation will remove the custom field "" from selected document(s).
@@ -8364,7 +8424,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
602
- This operation will remove the custom field "" from selected document(s).
+ Bu işlem alanını belgeden kaldıracaktır.
This operation will remove the custom fields from selected document(s).
@@ -8372,7 +8432,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
607,609
- This operation will remove the custom fields from selected document(s).
+ Bu işlem alanlarını belgeden kaldıracaktır.
This operation will assign the custom fields and remove the custom fields on selected document(s).
@@ -8380,7 +8440,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
611,615
- This operation will assign the custom fields and remove the custom fields on selected document(s).
+ Bu işlem, alanlarını atayacak ve alanlarını seçili belgeden kaldıracaktır.
Move selected document(s) to the trash?
@@ -8388,7 +8448,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
753
- Move selected document(s) to the trash?
+ Seçilmiş belgeyi çöp kutusuna taşımak istiyor musunuz?
This operation will permanently recreate the archive files for selected document(s).
@@ -8396,7 +8456,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
795
- This operation will permanently recreate the archive files for selected document(s).
+ Bu işlem, seçilmiş belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.
The archive files will be re-generated with the current settings.
@@ -8404,7 +8464,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
796
- The archive files will be re-generated with the current settings.
+ Arşiv dosyaları mevcut ayarlarla yeniden oluşturulacaktır.
Rotate confirm
@@ -8412,7 +8472,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
828
- Rotate confirm
+ Döndürmeyi onaylayın
This operation will permanently rotate the original version of document(s).
@@ -8420,7 +8480,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
829
- This operation will permanently rotate the original version of document(s).
+ Bu işlem belgede, orijinal sürümündeki sayfaları kalıcı olarak döndürecektir.
Merge confirm
@@ -8428,7 +8488,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
848
- Merge confirm
+ Birleştirmeyi onaylayın
This operation will merge selected documents into a new document.
@@ -8436,7 +8496,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
849
- This operation will merge selected documents into a new document.
+ Bu işlem belgeyi yeni bir belgede birleştirecektir.
Merged document will be queued for consumption.
@@ -8444,7 +8504,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
868
- Merged document will be queued for consumption.
+ Birleştirilen belge tüketim için sıraya alınacaktır.
Custom fields updated.
@@ -8452,7 +8512,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
892
- Custom fields updated.
+ Özel alanlar güncelleştirildi.
Error updating custom fields.
@@ -8460,7 +8520,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
901
- Error updating custom fields.
+ Özel alanları güncellerken bir hatayla karşılaşıldı.
{VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
@@ -8468,7 +8528,7 @@ tüm krite
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
3,7
- {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
+ {VAR_PLURAL, plural, =1 {1 belge için özel alanlar ayarla} other { belge için özel alanlar ayarla}}
Select custom fields
@@ -8476,7 +8536,7 @@ tüm krite
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
13
- Select custom fields
+ Özel alanları seçin
{VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
@@ -8485,8 +8545,7 @@ tüm krite
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
73,78
- {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
- remove custom fields from the selected documents.}}
+ {VAR_PLURAL, plural, =1 {Bu işlem, seçilen belgelerden 1 özel alanı da kaldıracaktır.} other {Bu işlem, seçilen belgelerden özel alanı da kaldıracaktır.}}
Filter by tag
@@ -8506,7 +8565,7 @@ tüm krite
src/app/components/document-list/document-card-large/document-card-large.component.html
91
- View notes
+ Notları görüntüle
Created:
@@ -8522,7 +8581,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
91,92
- Created:
+ Oluşturulmuş:
Added:
@@ -8566,7 +8625,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
106
- {VAR_PLURAL, plural, =1 {1 page} other { pages}}
+ {VAR_PLURAL, plural, =1 {1 sayfa} other { sayfa}}
Shared
@@ -8586,7 +8645,7 @@ tüm krite
src/app/pipes/username.pipe.ts
35
- Shared
+ Paylaşıldı
Score:
@@ -8602,7 +8661,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
20
- Toggle tag filter
+ Etiket filtresini aç/kapat
Toggle correspondent filter
@@ -8618,7 +8677,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
59
- Toggle document type filter
+ Belge türü filtresini aç/kapat
Toggle storage path filter
@@ -8626,7 +8685,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
66
- Toggle storage path filter
+ Depolama dizini filtresini aç/kapat
Select
@@ -8672,6 +8731,14 @@ tüm krite
Tümünü seç
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Seç:
+
None
@@ -8688,18 +8755,6 @@ tüm krite
Yok
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Show
-
Sort
@@ -8738,7 +8793,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
117
- All saved views
+ Tüm kaydedilen görünümler
{VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
@@ -8746,7 +8801,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
137
- {VAR_PLURAL, plural, =1 {Seçili 1 belgeden} other {Seçili , belgeden}}
+ {VAR_PLURAL, plural, =1 {Bir belgeden seçilen } other { belgeden Seçilen }}
{VAR_PLURAL, plural, =1 {One document} other { documents}}
@@ -8782,7 +8837,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
169
- Error while loading documents
+ Belgeleri yüklerken bir hata ile karşılaşıldı
Sort by ASN
@@ -8790,7 +8845,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
198
- Sort by ASN
+ ASN'ye göre sıralama
ASN
@@ -8800,7 +8855,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -8826,7 +8881,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
216
- Sort by title
+ Başlığa göre sırala
Sort by owner
@@ -8834,7 +8889,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
229
- Sort by owner
+ Sahibine göre sırala
Owner
@@ -8850,7 +8905,7 @@ tüm krite
src/app/data/document.ts
96
- Sahibi
+ Sahip
Sort by notes
@@ -8858,7 +8913,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
238
- Sort by notes
+ Notlara göre sırala
Sort by document type
@@ -8866,7 +8921,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
247
- Sort by document type
+ Belge türüne göre sırala
Sort by storage path
@@ -8874,7 +8929,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
256
- Sort by storage path
+ Kayıt dizinine göre sırala
Sort by created date
@@ -8882,7 +8937,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
265
- Sort by created date
+ Oluşturma tarihine göre sırala
Sort by added date
@@ -8890,7 +8945,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
274
- Sort by added date
+ Sisteme eklendiği tarihe göre sırala
Sort by number of pages
@@ -8898,7 +8953,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
283
- Sort by number of pages
+ Sayfa sayısına göre sırala
Pages
@@ -8918,7 +8973,7 @@ tüm krite
src/app/data/paperless-config.ts
91
- Pages
+ Sayfalar
Shared
@@ -8926,7 +8981,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
290,292
- Shared
+ Paylaşılmış
Sort by
@@ -8934,7 +8989,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
297,298
- Sort by
+ göre sırala
Edit document
@@ -8950,7 +9005,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
332
- Preview document
+ Belgeyi ön izle
Reset filters / selection
@@ -8958,7 +9013,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
296
- Reset filters / selection
+ Filtreleri / seçimi sıfırla
Open first [selected] document
@@ -8966,7 +9021,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
324
- Open first [selected] document
+ İlk [selected] belgeyi aç
Previous page
@@ -8974,7 +9029,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
340
- Previous page
+ Önceki sayfa
Next page
@@ -8982,7 +9037,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
352
- Next page
+ Sonraki sayfa
View "" saved successfully.
@@ -8998,7 +9053,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
391
- Failed to save view "".
+ "" görünümünü kaydederken bir hata ile karşılaşıldı.
View "" created successfully.
@@ -9014,13 +9069,13 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.html
90
- Dates
+ Tarihler
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Başlık ve içerik
@@ -9028,15 +9083,15 @@ tüm krite
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
- File type
+ Dosya tipi
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Benzeri gibi
@@ -9044,7 +9099,7 @@ tüm krite
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
eşittir
@@ -9052,7 +9107,7 @@ tüm krite
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
boş
@@ -9060,7 +9115,7 @@ tüm krite
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
boş değil
@@ -9068,23 +9123,23 @@ tüm krite
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
- greater than
+ den büyük
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
- less than
+ den küçük
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Muhatap:
@@ -9092,7 +9147,7 @@ tüm krite
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Muhatapsız
@@ -9100,15 +9155,15 @@ tüm krite
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
- Document type:
+ Belge türü:
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Belge türü olmayan
@@ -9116,47 +9171,47 @@ tüm krite
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
- Storage path:
+ Depolama dizini:
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
- Without storage path
+ Depolama dizini olmadan
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
- Tag:
+ Etiket:
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
- Herhangi bir künye olmayan
+ Etiketsiz
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
- Custom fields query
+ Özel alan sorgusu
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Başlık:
@@ -9164,7 +9219,7 @@ tüm krite
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9172,25 +9227,25 @@ tüm krite
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
- Owner:
+ Sahibi:
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
- Owner not in:
+ Sahibi içinde değil:
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
- Without an owner
+ Sahipsiz
Save current view
@@ -9222,7 +9277,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
20
- Gösterge tablosunda göster
+ Kontrol panelinde göster
Filter rules error occurred while saving this view
@@ -9230,7 +9285,7 @@ tüm krite
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
13
- Filter rules error occurred while saving this view
+ Bu görünümü kaydederken filtre kuralları ile ilgili bir hata meydana geldi
The error returned was
@@ -9238,7 +9293,7 @@ tüm krite
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
14
- The error returned was
+ Hatanın gönderdiği
Enter note
@@ -9246,7 +9301,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
5
- Enter note
+ Not ekle
Please enter a note.
@@ -9254,7 +9309,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
6,8
- Please enter a note.
+ Lütfen bir not girin
Add note
@@ -9262,7 +9317,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
14
- Add note
+ Not ekle
Delete note
@@ -9274,7 +9329,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
27
- Delete note
+ Notu sil
Error saving note
@@ -9282,7 +9337,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.ts
81
- Error saving note
+ Not kaydedilirken bir hata oluştu
Error deleting note
@@ -9290,7 +9345,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.ts
95
- Error deleting note
+ Not silerken bir hata oluştu
Drop files to begin upload
@@ -9310,7 +9365,7 @@ tüm krite
src/app/components/file-drop/file-drop.component.ts
146
- Initiating upload...
+ Yükleme başlatılıyor...
Failed to read dropped items:
@@ -9318,7 +9373,7 @@ tüm krite
src/app/components/file-drop/file-drop.component.ts
142
- Failed to read dropped items:
+ Bırakılan öğeleri okurken bir hata meydana geldi:
correspondent
@@ -9358,7 +9413,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
4
- Customize the data fields that can be attached to documents.
+ Belgelere eklenebilecek veri alanlarını özelleştirin.
Add Field
@@ -9366,7 +9421,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
9
- Add Field
+ Alan Ekle
Data Type
@@ -9374,7 +9429,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
18
- Data Type
+ Veri Tipi
Filter Documents ()
@@ -9398,7 +9453,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.html
117
- Filter Documents ()
+ Belgeleri Filtrele ()
No fields defined.
@@ -9406,7 +9461,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
70
- No fields defined.
+ Herhangi bir alan tanımlanmadı.
Confirm delete field
@@ -9414,7 +9469,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
102
- Confirm delete field
+ Alanı silmeyi onayla
This operation will permanently delete this field.
@@ -9422,7 +9477,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
103
- This operation will permanently delete this field.
+ Bu işlem alanı kalıcı olarak silecektir.
Deleted field ""
@@ -9430,7 +9485,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
112
- Deleted field ""
+ "" alanı silindi
Error deleting field "".
@@ -9438,7 +9493,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
121
- Error deleting field "".
+ "" alanını silerken bir hata ile karşılaşıldı.
document type
@@ -9470,7 +9525,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
2
- Mail Settings
+ Posta Ayarları
Mail accounts
@@ -9478,7 +9533,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
12
- Mail accounts
+ Posta Hesapları
Add Account
@@ -9486,7 +9541,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
14
- Add Account
+ Hesap Ekle
Connect Gmail Account
@@ -9494,7 +9549,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
18
- Connect Gmail Account
+ Gmail Hesabını Bağla
Connect Outlook Account
@@ -9502,7 +9557,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
23
- Connect Outlook Account
+ Outlook Hesabını Bağla
Server
@@ -9510,7 +9565,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
31
- Server
+ Sunucu
Process Mail
@@ -9522,7 +9577,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
86
- Process Mail
+ Posta İşlemi
No mail accounts defined.
@@ -9530,7 +9585,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
95
- No mail accounts defined.
+ Tanımlanmış bir posta hesabı yok.
Mail rules
@@ -9538,7 +9593,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
103
- Mail rules
+ E-posta kuralları
Add Rule
@@ -9546,7 +9601,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
105
- Add Rule
+ Kural Ekle
Sort Order
@@ -9554,7 +9609,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
112
- Sort Order
+ Sıralama
Disabled
@@ -9566,7 +9621,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
41
- Disabled
+ Devre dışı
View Processed Mail
@@ -9574,7 +9629,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
143
- View Processed Mail
+ İşlenmiş Postaları Görüntüle
No mail rules defined.
@@ -9582,7 +9637,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
183
- No mail rules defined.
+ Tanımlanmış bir posta kuralı mevcut değil.
Error retrieving mail accounts
@@ -9590,7 +9645,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
105
- Error retrieving mail accounts
+ Posta hesaplarından bilgi alırken bir hata meydana geldi
Error retrieving mail rules
@@ -9598,7 +9653,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
127
- Error retrieving mail rules
+ Posta kurallarını yüklerken bir hata meydana geldi
OAuth2 authentication success
@@ -9606,7 +9661,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
135
- OAuth2 authentication success
+ OAuth2 yetkilendirmesi başarılı
OAuth2 authentication failed, see logs for details
@@ -9614,7 +9669,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
146
- OAuth2 authentication failed, see logs for details
+ OAuth2 yetkilendirmesi ile ilgili bir hata meydana geldi, detaylar için günlüklere göz atın
Saved account "".
@@ -9622,7 +9677,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
170
- Saved account "".
+ "" hesabı kaydedildi.
Error saving account.
@@ -9630,7 +9685,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
182
- Error saving account.
+ Hesabı kaydederken bir hata ile karşılaşıldı.
Confirm delete mail account
@@ -9638,7 +9693,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
190
- Confirm delete mail account
+ Posta hesabının silinmesini onaylayın
This operation will permanently delete this mail account.
@@ -9646,7 +9701,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
191
- This operation will permanently delete this mail account.
+ Bu işlem, bu posta hesabını kalıcı olarak silecektir.
Deleted mail account ""
@@ -9654,7 +9709,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
201
- Deleted mail account ""
+ "" posta hesabı silindi
Error deleting mail account "".
@@ -9662,7 +9717,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
212
- Error deleting mail account "".
+ "" posta hesabı silinirken bir hata meydana geldi.
Processing mail account ""
@@ -9670,7 +9725,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
224
- Processing mail account ""
+ "" posta hesabı işleniyor
Error processing mail account ""
@@ -9678,7 +9733,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
229
- Error processing mail account ""
+ "" posta hesabı işlenirken bir hata meydana geldi
Saved rule "".
@@ -9686,7 +9741,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
247
- Saved rule "".
+ "" kuralı kaydedildi.
Error saving rule.
@@ -9694,7 +9749,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
258
- Error saving rule.
+ Kuralı kaydedilirken bir hata meydana geldi.
Rule "" enabled.
@@ -9702,7 +9757,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
274
- Rule "" enabled.
+ "" kuralı aktifleştirildi.
Rule "" disabled.
@@ -9710,7 +9765,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
275
- Rule "" disabled.
+ "" kuralı devre dışı bırakıldı.
Error toggling rule "".
@@ -9718,7 +9773,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
280
- Error toggling rule "".
+ Kuralı açarken veya kapatırken bir hata meydana geldi "".
Confirm delete mail rule
@@ -9726,7 +9781,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
291
- Confirm delete mail rule
+ Posta hesabı kuralının silinmesini onaylayın
This operation will permanently delete this mail rule.
@@ -9734,7 +9789,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
292
- This operation will permanently delete this mail rule.
+ Bu işlem, bu posta kuralını kalıcı olarak silecektir.
Deleted mail rule ""
@@ -9742,7 +9797,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
302
- Deleted mail rule ""
+ "" posta kuralı silindi
Error deleting mail rule "".
@@ -9750,7 +9805,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
313
- Error deleting mail rule "".
+ "" posta kuralı silinirken bir hata meydana geldi.
Permissions updated
@@ -9758,7 +9813,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
337
- Permissions updated
+ İzinler güncellendi
Error updating permissions
@@ -9768,9 +9823,9 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
- Error updating permissions
+ İzinler güncellenirken bir hata meydana geldi
Processed Mail for
@@ -9778,7 +9833,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Processed Mail for
+ için postalar işlendi
No processed email messages found.
@@ -9786,7 +9841,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- No processed email messages found.
+ İşlenmiş posta mesajı bulunamadı.
Received
@@ -9794,7 +9849,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ Teslim Alındı
Processed
@@ -9802,7 +9857,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Processed
+ İşlendi
Processed mail(s) deleted
@@ -9810,7 +9865,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ İşlenmiş posta veya postalar silindi
Filter by:
@@ -9890,7 +9945,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.html
67
- {VAR_PLURAL, plural, =1 {One } other { total }}
+ {VAR_PLURAL, plural, =1 {Bir } other {Toplam }}
Automatic
@@ -9910,7 +9965,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
196
- Successfully created .
+ başarıyla oluşturuldu.
Error occurred while creating .
@@ -9918,7 +9973,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
201
- Error occurred while creating .
+ oluşturulurken bir hata meydana geldi.
Successfully updated "".
@@ -9926,7 +9981,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
216
- Successfully updated "".
+ "" başarıyla güncellendi.
Error occurred while saving .
@@ -9934,7 +9989,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
221
- Error occurred while saving .
+ kaydederken bir hata meydana geldi.
Associated documents will not be deleted.
@@ -9942,7 +9997,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
241
- Associated documents will not be deleted.
+ İliştirilmiş belgeler silinmeyecektir.
Error while deleting element
@@ -9950,39 +10005,39 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
257
- Error while deleting element
+ Öğeyi silerken bir hata meydana geldi
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
- Permissions updated successfully
+ İzinler başarıyla güncellendi
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
- This operation will permanently delete all objects.
+ Bu işlem tüm nesneleri kalıcı olarak silecektir.
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
- Objects deleted successfully
+ Nesneler başarıyla silindi
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
- Error deleting objects
+ Nesneleri silerken bir hata ile karşılaşıldı
Customize the views of your documents.
@@ -9990,7 +10045,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
4
- Customize the views of your documents.
+ Belgelerinizin görünümünü özelleştirin.
Documents page size
@@ -9998,7 +10053,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
41
- Documents page size
+ Belgelerin sayfa sayısı
Display as
@@ -10006,7 +10061,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
44
- Display as
+ Olarak göster
Table
@@ -10014,7 +10069,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
46
- Table
+ Tablo
Small Cards
@@ -10022,7 +10077,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
47
- Small Cards
+ Küçük Kartlar
Large Cards
@@ -10030,7 +10085,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
48
- Large Cards
+ Büyük Kartlar
No saved views defined.
@@ -10054,7 +10109,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.ts
158
- Views saved successfully.
+ Görünümler başarıyla kaydedildi.
Error while saving views.
@@ -10062,7 +10117,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.ts
163
- Error while saving views.
+ Görünümleri kaydederken bir hata ile karşılaşıldı.
storage path
@@ -10086,7 +10141,7 @@ tüm krite
src/app/components/manage/storage-path-list/storage-path-list.component.ts
62
- Do you really want to delete the storage path ""?
+ "" kayıt dizinini gerçekten silmek istiyor musunuz?
tag
@@ -10094,7 +10149,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
45
- künye
+ etiket
tags
@@ -10102,7 +10157,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
46
- künyeler
+ etiketler
Do you really want to delete the tag ""?
@@ -10110,7 +10165,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
61
- "" künyesini silmeyi gerçekten istiyor musunuz?
+ "" etiketini silmeyi gerçekten istiyor musunuz?
Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
@@ -10118,7 +10173,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
4
- Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
+ İş akışlarını kullanarak, olaylar bir iş akışını tetiklediğinde Paperless-ngx'in davranışını özelleştirin.
Add Workflow
@@ -10126,7 +10181,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
9
- Add Workflow
+ İş Akışı Ekleyin
No workflows defined.
@@ -10134,7 +10189,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
80
- No workflows defined.
+ Herhangi bir iş akışı tanımlanmamış.
Saved workflow "".
@@ -10142,7 +10197,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
90
- Saved workflow "".
+ "" iş akışı kaydedildi.
Error saving workflow.
@@ -10150,7 +10205,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
98
- Error saving workflow.
+ İş akışını kaydederken bir hata ile karşılaşıldı.
Confirm delete workflow
@@ -10158,7 +10213,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
131
- Confirm delete workflow
+ İş akışını silmeyi onayla
This operation will permanently delete this workflow.
@@ -10166,7 +10221,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
132
- This operation will permanently delete this workflow.
+ Bu işlem iş akışını kalıcı olarak silecektir.
Deleted workflow "".
@@ -10174,7 +10229,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
142
- Deleted workflow "".
+ "" iş akışı silindi.
Error deleting workflow "".
@@ -10182,7 +10237,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
149
- Error deleting workflow "".
+ iş akışını silerken bir hata ile karşılaşıldı.
Enabled workflow ""
@@ -10190,7 +10245,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
162
- Enabled workflow ""
+ "" iş akışı aktifleştirildi
Disabled workflow ""
@@ -10198,7 +10253,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
163
- Disabled workflow ""
+ "" iş akışı devre dışı bırakıldı
Error toggling workflow "".
@@ -10206,7 +10261,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
170
- Error toggling workflow "".
+ "" açılıp yada kapanırken bir hata ile karşılaşıldı.
Not Found
@@ -10214,7 +10269,7 @@ tüm krite
src/app/components/not-found/not-found.component.html
6
- Not Found
+ Bulunamadı
Go to Dashboard
@@ -10222,7 +10277,7 @@ tüm krite
src/app/components/not-found/not-found.component.html
9
- Go to Dashboard
+ Kontrol Paneline git
Equal to
@@ -10230,7 +10285,7 @@ tüm krite
src/app/data/custom-field-query.ts
24
- Equal to
+ Eşittir
In
@@ -10238,7 +10293,7 @@ tüm krite
src/app/data/custom-field-query.ts
25
- In
+ İçinde
Is null
@@ -10246,7 +10301,7 @@ tüm krite
src/app/data/custom-field-query.ts
26
- Is null
+ Null'dur
Exists
@@ -10254,7 +10309,7 @@ tüm krite
src/app/data/custom-field-query.ts
27
- Exists
+ Mevcut
Contains
@@ -10262,7 +10317,7 @@ tüm krite
src/app/data/custom-field-query.ts
28
- Contains
+ İçeren
Contains (case-insensitive)
@@ -10270,7 +10325,7 @@ tüm krite
src/app/data/custom-field-query.ts
29
- Contains (case-insensitive)
+ İçeren (Büyük-küçük harf duyarsız)
Greater than
@@ -10278,7 +10333,7 @@ tüm krite
src/app/data/custom-field-query.ts
30
- Greater than
+ Den büyük
Greater than or equal to
@@ -10286,7 +10341,7 @@ tüm krite
src/app/data/custom-field-query.ts
31
- Greater than or equal to
+ Büyüktür ya da eşittir
Less than
@@ -10294,7 +10349,7 @@ tüm krite
src/app/data/custom-field-query.ts
32
- Less than
+ Den küçük
Less than or equal to
@@ -10302,7 +10357,7 @@ tüm krite
src/app/data/custom-field-query.ts
33
- Less than or equal to
+ Küçüktür veya eşittir
Range
@@ -10310,7 +10365,7 @@ tüm krite
src/app/data/custom-field-query.ts
34
- Range
+ Aralık
Boolean
@@ -10318,7 +10373,7 @@ tüm krite
src/app/data/custom-field.ts
19
- Boolean
+ Evet/Hayır
Date
@@ -10326,7 +10381,7 @@ tüm krite
src/app/data/custom-field.ts
23
- Date
+ Tarih
Integer
@@ -10334,7 +10389,7 @@ tüm krite
src/app/data/custom-field.ts
27
- Integer
+ Tam sayı
Number
@@ -10342,7 +10397,7 @@ tüm krite
src/app/data/custom-field.ts
31
- Number
+ Sayı
Monetary
@@ -10350,7 +10405,7 @@ tüm krite
src/app/data/custom-field.ts
35
- Monetary
+ Parasal
Text
@@ -10358,7 +10413,7 @@ tüm krite
src/app/data/custom-field.ts
39
- Text
+ Metin
Url
@@ -10366,7 +10421,7 @@ tüm krite
src/app/data/custom-field.ts
43
- Url
+ Bağlantı
Document Link
@@ -10374,7 +10429,7 @@ tüm krite
src/app/data/custom-field.ts
47
- Document Link
+ Belge Bağlantısı
Long Text
@@ -10382,7 +10437,7 @@ tüm krite
src/app/data/custom-field.ts
55
- Long Text
+ Uzun Metin
Search score
@@ -10487,7 +10542,7 @@ tüm krite
src/app/data/matching-model.ts
46
- None: Disable matching
+ Yok: Eşleştirmeyi devre dışı bırak
General Settings
@@ -10495,7 +10550,7 @@ tüm krite
src/app/data/paperless-config.ts
50
- General Settings
+ Genel Ayarlar
OCR Settings
@@ -10503,7 +10558,7 @@ tüm krite
src/app/data/paperless-config.ts
51
- OCR Settings
+ OCR Ayarları
Barcode Settings
@@ -10511,7 +10566,7 @@ tüm krite
src/app/data/paperless-config.ts
52
- Barcode Settings
+ Barkod Ayarları
Output Type
@@ -10519,7 +10574,7 @@ tüm krite
src/app/data/paperless-config.ts
76
- Output Type
+ Çıktı Türü
Language
@@ -10527,7 +10582,7 @@ tüm krite
src/app/data/paperless-config.ts
84
- Language
+ Dil
Mode
@@ -10535,7 +10590,7 @@ tüm krite
src/app/data/paperless-config.ts
98
- Mode
+ Mod
Skip Archive File
@@ -10543,7 +10598,7 @@ tüm krite
src/app/data/paperless-config.ts
106
- Skip Archive File
+ Arşiv Dosyasını Atla
Image DPI
@@ -10551,7 +10606,7 @@ tüm krite
src/app/data/paperless-config.ts
114
- Image DPI
+ Görüntü DPI
Clean
@@ -10559,7 +10614,7 @@ tüm krite
src/app/data/paperless-config.ts
121
- Clean
+ Sıfırdan İşle
Deskew
@@ -10567,7 +10622,7 @@ tüm krite
src/app/data/paperless-config.ts
129
- Deskew
+ Deskew
Rotate Pages
@@ -10575,7 +10630,7 @@ tüm krite
src/app/data/paperless-config.ts
136
- Rotate Pages
+ Sayfaları Döndür
Rotate Pages Threshold
@@ -10583,7 +10638,7 @@ tüm krite
src/app/data/paperless-config.ts
143
- Rotate Pages Threshold
+ Sayfalar Döndürmek İçin Gerekli Eşik Değeri
Max Image Pixels
@@ -10591,7 +10646,7 @@ tüm krite
src/app/data/paperless-config.ts
150
- Max Image Pixels
+ Maksimum Görüntü Pikseli
Color Conversion Strategy
@@ -10599,7 +10654,7 @@ tüm krite
src/app/data/paperless-config.ts
157
- Color Conversion Strategy
+ Renk Dönüştürme Stratejisi
OCR Arguments
@@ -10607,7 +10662,7 @@ tüm krite
src/app/data/paperless-config.ts
165
- OCR Arguments
+ OCR Argümanları
Application Logo
@@ -10615,7 +10670,7 @@ tüm krite
src/app/data/paperless-config.ts
172
- Application Logo
+ Sistemin Logosu
Application Title
@@ -10623,7 +10678,7 @@ tüm krite
src/app/data/paperless-config.ts
179
- Application Title
+ Sistemin Başlığı
Enable Barcodes
@@ -10631,7 +10686,7 @@ tüm krite
src/app/data/paperless-config.ts
186
- Enable Barcodes
+ Barkodları Etkinleştir
Enable TIFF Support
@@ -10639,7 +10694,7 @@ tüm krite
src/app/data/paperless-config.ts
193
- Enable TIFF Support
+ TIFF Desteğini Etkinleştir
Barcode String
@@ -10647,7 +10702,7 @@ tüm krite
src/app/data/paperless-config.ts
200
- Barcode String
+ Barkod Dizesi
Retain Split Pages
@@ -10655,7 +10710,7 @@ tüm krite
src/app/data/paperless-config.ts
207
- Retain Split Pages
+ Bölünmüş Sayfaları Koru
Enable ASN
@@ -10663,7 +10718,7 @@ tüm krite
src/app/data/paperless-config.ts
214
- Enable ASN
+ ASN'yi etkinleştir
ASN Prefix
@@ -10671,7 +10726,7 @@ tüm krite
src/app/data/paperless-config.ts
221
- ASN Prefix
+ ASN Ön Eki
Upscale
@@ -10679,7 +10734,7 @@ tüm krite
src/app/data/paperless-config.ts
228
- Upscale
+ Çözünürlüğü yükseltme
DPI
@@ -10687,7 +10742,7 @@ tüm krite
src/app/data/paperless-config.ts
235
- DPI
+ DPI
Max Pages
@@ -10695,7 +10750,7 @@ tüm krite
src/app/data/paperless-config.ts
242
- Max Pages
+ Maksimum Sayfa Sayısı
Enable Tag Detection
@@ -10703,7 +10758,7 @@ tüm krite
src/app/data/paperless-config.ts
249
- Enable Tag Detection
+ Etiket Algılamayı Etkinleştir
Tag Mapping
@@ -10711,7 +10766,7 @@ tüm krite
src/app/data/paperless-config.ts
256
- Tag Mapping
+ Etiket Eşlemesi
Warning: You have unsaved changes to your document(s).
@@ -10719,7 +10774,7 @@ tüm krite
src/app/guards/dirty-doc.guard.ts
16
- Warning: You have unsaved changes to your document(s).
+ Uyarı: Belge(ler)inizde kaydedilmemiş değişiklikler var.
Unsaved Changes
@@ -10775,7 +10830,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
29
- You have unsaved changes to the saved view
+ Kaydedilmiş görünümde kaydedilmemiş değişiklikleriniz var
Are you sure you want to close this saved view?
@@ -10783,7 +10838,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
33
- Are you sure you want to close this saved view?
+ Bu kaydedilmiş görünümü kapatmak istediğinizden emin misiniz?
Save and close
@@ -10791,7 +10846,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
37
- Save and close
+ Kaydet ve kapat
You don't have permissions to do that
@@ -10799,7 +10854,7 @@ tüm krite
src/app/guards/permissions.guard.ts
34
- You don't have permissions to do that
+ Bunu yapmak için gerekli izinlere sahip değilsiniz
Last year
@@ -10815,7 +10870,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
15
- %s years ago
+ %s yıl önce
Last month
@@ -10831,7 +10886,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
20
- %s months ago
+ %s ay önce
Last week
@@ -10839,7 +10894,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
24
- Last week
+ Geçen hafta
%s weeks ago
@@ -10847,7 +10902,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
25
- %s weeks ago
+ %s hafta önce
%s days ago
@@ -10855,7 +10910,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
30
- %s days ago
+ %s gün önce
%s hour ago
@@ -10863,7 +10918,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
34
- %s hour ago
+ %s saat önce
%s hours ago
@@ -10871,7 +10926,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
35
- %s hours ago
+ %s saat önce
%s minute ago
@@ -10879,7 +10934,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
39
- %s minute ago
+ %s dakika önce
%s minutes ago
@@ -10887,7 +10942,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
40
- %s minutes ago
+ %s dakika önce
Just now
@@ -10895,7 +10950,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
73
- Just now
+ Az önce
(no title)
@@ -10911,7 +10966,7 @@ tüm krite
src/app/services/open-documents.service.ts
124
- You have unsaved changes to the document
+ Belgede kaydetmemiş değişiklikleriniz var
Are you sure you want to close this document?
@@ -10975,7 +11030,7 @@ tüm krite
src/app/services/settings.service.ts
75
- Bulgarian
+ Bulgarca
Catalan
@@ -11055,7 +11110,7 @@ tüm krite
src/app/services/settings.service.ts
135
- Hungarian
+ Macarca
Italian
@@ -11071,7 +11126,7 @@ tüm krite
src/app/services/settings.service.ts
147
- Japanese
+ Japonca
Korean
@@ -11079,7 +11134,7 @@ tüm krite
src/app/services/settings.service.ts
153
- Korean
+ Korece
Luxembourgish
@@ -11111,7 +11166,7 @@ tüm krite
src/app/services/settings.service.ts
177
- Persian
+ Farsça
Polish
@@ -11207,7 +11262,7 @@ tüm krite
src/app/services/settings.service.ts
249
- Vietnamese
+ Vietnamca
Chinese Simplified
@@ -11223,7 +11278,7 @@ tüm krite
src/app/services/settings.service.ts
261
- Chinese Traditional
+ Geleneksel Çince
ISO 8601
@@ -11239,7 +11294,7 @@ tüm krite
src/app/services/settings.service.ts
603
- Successfully completed one-time migratration of settings to the database!
+ Ayarların veritabanına tek seferlik taşıma işlemi başarıyla tamamlandı!
Unable to migrate settings to the database, please try saving manually.
@@ -11247,7 +11302,7 @@ tüm krite
src/app/services/settings.service.ts
604
- Unable to migrate settings to the database, please try saving manually.
+ Ayarları veritabanına taşıyamıyoruz, lütfen manuel olarak kaydetmeyi deneyin.
You can restart the tour from the settings page.
@@ -11255,7 +11310,7 @@ tüm krite
src/app/services/settings.service.ts
677
- You can restart the tour from the settings page.
+ Ayarlar sayfasından turu yeniden başlatabilirsiniz.
Connecting...
@@ -11303,7 +11358,7 @@ tüm krite
src/app/services/websocket-status.service.ts
25
- Document already exists. Note: existing document is in the trash.
+ Belge zaten mevcut. Not: Mevcut belge çöp kutusunda.
Document with ASN already exists.
@@ -11311,7 +11366,7 @@ tüm krite
src/app/services/websocket-status.service.ts
26
- Document with ASN already exists.
+ ASN içeren belge zaten mevcut.
Document with ASN already exists. Note: existing document is in the trash.
@@ -11319,7 +11374,7 @@ tüm krite
src/app/services/websocket-status.service.ts
27
- Document with ASN already exists. Note: existing document is in the trash.
+ ASN içeren belge zaten mevcut. Not: mevcut belge çöp kutusunda.
File not found.
@@ -11336,7 +11391,7 @@ tüm krite
29
Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation
- Tüketim öncesi komut dosyası yok.
+ Tüketim öncesi komut dosyası mevcut değil.
Error while executing pre-consume script.
@@ -11345,7 +11400,7 @@ tüm krite
30
Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation
- Tüketim öncesi komut dosyasını işlerken hata oluştu.
+ Tüketim öncesi komut dosyasını işlerken bir hata meydana geldi.
Post-consume script does not exist.
@@ -11354,7 +11409,7 @@ tüm krite
31
Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation
- Tüketim sonrası komut dosyası yok.
+ Tüketim sonrası komut dosyası mevcut değil.
Error while executing post-consume script.
@@ -11363,7 +11418,7 @@ tüm krite
32
Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation
- Tüketim sonrası komut dosyasını işlerken hata oluştu.
+ Tüketim sonrası komut dosyasını işlerken bir hata meydana geldi.
Received new file.
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index c0139391a..1ea46f476 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Закрити
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
Попередній
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
Наступний
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Попередній місяць
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
Наступний місяць
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
ГГ
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Закрити
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
Оберіть місяць
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
Натисніть для перегляду.
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx може автоматично перевіряти наявність оновлень
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
Як це працює?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
Доступне оновлення
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
Представлення бічної панелі оновлено
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
Помилка оновлення представлень бічної панелі
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
Сталася помилка при збереженні налаштувань для перевірки оновлень.
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
Вірно
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
Невірно
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
Шукати в документації...
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
Не
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
Додати запит
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
Додати вираз
@@ -3798,18 +3830,6 @@
Відносні дати
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- зараз
-
From
@@ -3858,11 +3878,19 @@
Додано
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ зараз
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
Протягом одного тижня
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
Протягом одного місяця
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
Протягом трьох місяців
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
Протягом одного року
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
Цього року
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
Цього місяця
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
Вчора
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
Нечутливий до регістру
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
Призначити тип документа
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
Призначити кореспондента
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
Створити новий обліковий запис користувача
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
Редагувати обліковий запис
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP вимкнено
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp deactivation failed
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
Тип тригера
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
Set scheduled trigger offset and which date field to use.
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
Offset days
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
Positive values will trigger after the date, negative values before.
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
Відносно
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Користувацьке поле
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
Користувацьке поле для використання дати.
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Повторюваний
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
Trigger is recurring.
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Recurring interval days
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
Repeat the trigger every n days.
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
Тригер для документів, які збігаються усі фільтри, зазначені нижче.
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Фільтрувати назви файлів
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру.
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
Джерела фільтрації
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Шлях фільтра
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
Застосовувати до документів, які відповідають цьому шляху. Допускаються символи підставляння, позначені як *. Нормалізовано за регістром.</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Правило фільтрування пошти
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
Застосувати до документів, що обслуговуються за допомогою цього правила пошти.
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
Алгоритм розпізнавання вмісту
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
Шаблон відповідності вмісту
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
Advanced Filters
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
Add filter
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
No advanced workflow filters defined.
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
Complete the custom field query configuration.
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
Тип дії
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Призначити назву
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
Може містити деякі заповнювачі, дивись <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацію</a>.
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
Призначити теги
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
Призначити шлях до сховища
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
Призначити користувацькі поля
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
Призначити власника
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
Призначити дозволи на перегляд
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
Призначити права на редагування
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
Вилучити позначки
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
Видалити всі
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
Видалити всіх кореспондентів
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
Видалити всі типи документів
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
Видалити всі шляхи зберігання
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
Вилучити власне поле
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
Видалити власників
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
Вилучити дозволи
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
Переглянути дозволи
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
Редагувати дозволи
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
Тема електронного листа
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
Текст листа
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
Одержувачі електронної пошти
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
Вкласти документ
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
URL-адреса вебхука
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
Використовувати параметри для тіла webhook
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
Send webhook payload as JSON
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Параметри вебхука
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Тіло вебхука
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Заголовки веб-хуків
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
Включити документ
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не призначено
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
Відкрити фільтр
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
Обліковий запис успішно оновлено
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
Помилка збереження профілю
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
Помилка генерації токена авторизації
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
Помилка від'єднання акаунта соціальної мережі
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
Помилка отримання налаштувань TOTP
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP успішно активовано
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
Помилка активації TOTP
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP успішно деактивовано
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
Помилка деактивації TOTP
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
Print failed.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Error loading document for printing.
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
An error occurred loading tiff:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
Власні поля
@@ -8670,6 +8730,14 @@
Вибрати всі
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8686,18 +8754,6 @@
Немає
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- Показувати
-
Sort
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
Назва та вміст
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
Тип файлу
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
Більше схожих
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
дорівнює
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
не заповнено
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
заповнено
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
більше ніж
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
менше ніж
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
Correspondent:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
Без кореспондента
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
Document type:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
Без типу документа
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
Storage path:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
Без шляху зберігання
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
Tag:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
Без жодного тегу
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
Custom fields query
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
Назва:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
АСН:
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
Власник:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
Власник не в:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
Без власника
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
Помилка оновлення прав доступу
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
Права доступу успішно оновлено
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
Ця операція остаточно видалить всі об'єкти.
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
Об'єкти успішно видалені
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
Помилка видалення об'єктів
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index f2ffd3f97..ed5c05b71 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
Đóng
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -27,7 +27,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
@@ -37,7 +37,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
@@ -47,11 +47,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
@@ -61,11 +61,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
@@ -75,7 +75,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
@@ -85,7 +85,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
@@ -95,11 +95,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
@@ -109,7 +109,7 @@
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
本月
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
昨天
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ Previous week
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ Previous month
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ Previous quarter
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ Previous year
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
忽略大小写
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
分配文档类型
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
分配联系人
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
创建新用户
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
编辑用户
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
Totp 已停用
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
Totp 停用失败
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
触发类型
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
设置计划的触发器偏移量以及使用哪个日期字段。
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
偏移天数
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
正值将在日期之后触发,负值则在日期之前触发。
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
相对于
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
自定义字段
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
自定义日期字段。
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
定期
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
触发器循环中。
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
循环间隔天数
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
每n天重复触发器。
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
触发匹配下面指定的 所有 过滤器的文档。
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
筛选文件名
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
应用于匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
筛选源
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
筛选路径
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
筛选邮件规则
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
应用于通过此邮件规则消费的文档。
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
内容匹配算法
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
内容匹配模式
@@ -5214,7 +5274,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
高级筛选
@@ -5222,7 +5282,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
添加筛选条件
@@ -5230,7 +5290,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
未定义高级工作流筛选条件。
@@ -5238,7 +5298,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
完成自定义字段查询配置。
@@ -5246,7 +5306,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
操作类型
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
指定标题
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
可以包含一些占位符,请参阅 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>文档</a>。
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
分配标签
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
指定存储路径
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
分配自定义字段
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
分配用户
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
分配查看权限
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
分配编辑权限
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
移除标签
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
移除全部
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
移除所有通讯员
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
移除所有文档类型
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
移除存储路径
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
移除自定义字段
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
移除所有者
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
移除权限
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
查看权限
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
编辑权限
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
邮件主题
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
邮件正文
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
邮件收件人
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
附加文件
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook 链接
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
使用参数作为webhook负载
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
以 JSON 格式发送网络钩子的有效负载 (webhook payload)
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook参数
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook负载
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook标头
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
添加文档
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未分配
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
开启过滤
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
帐户信息更新成功
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
保存帐户信息时发生错误
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
生成验证令牌时发生错误
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
断开社交账户时发生错误
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
獲取TOTP 設定時出錯
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP 啟動成功
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
啟動TOTP時錯誤
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP 停用成功
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
停用TOTP時錯誤
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
打印失败。
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
加载打印文档时出错。
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
加载内容时发生错误:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
自定义字段
@@ -8669,6 +8729,14 @@
全选
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ Select:
+
None
@@ -8685,18 +8753,6 @@
无
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- 显示列
-
Sort
@@ -8797,7 +8853,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -9017,7 +9073,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
标题 & 内容
@@ -9025,7 +9081,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
文件类型
@@ -9033,7 +9089,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
更多
@@ -9041,7 +9097,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
等于
@@ -9049,7 +9105,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
为空
@@ -9057,7 +9113,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
不为空
@@ -9065,7 +9121,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
高于
@@ -9073,7 +9129,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
低于
@@ -9081,7 +9137,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
联系人:
@@ -9089,7 +9145,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
没有联系人
@@ -9097,7 +9153,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
文档类型:
@@ -9105,7 +9161,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
没有文档类型
@@ -9113,7 +9169,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
存储路径:
@@ -9121,7 +9177,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
没有存储路径
@@ -9129,7 +9185,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
标签:
@@ -9137,7 +9193,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
没有任何标签
@@ -9145,7 +9201,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
自定义字段查询
@@ -9153,7 +9209,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
标题:
@@ -9161,7 +9217,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
ASN:
@@ -9169,7 +9225,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
所有者:
@@ -9177,7 +9233,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
所有者不在:
@@ -9185,7 +9241,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
没有所有者
@@ -9765,7 +9821,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
更新权限时发生错误
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
权限更新成功
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
此操作将永久删除所有对象。
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
对象删除成功
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
删除对象时发生错误
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 04851f9a3..1eaac6ef3 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/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
50
關閉
@@ -13,7 +13,7 @@
Slide of
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
131,135
Currently selected slide number read by screen reader
@@ -22,7 +22,7 @@
Previous
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
157,159
上一個
@@ -30,7 +30,7 @@
Next
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
198
下一個
@@ -38,11 +38,11 @@
Previous month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
83,85
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
上個月
@@ -50,11 +50,11 @@
Next month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
112
下個月
@@ -62,7 +62,7 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
HH
@@ -70,7 +70,7 @@
Close
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
關閉
@@ -78,11 +78,11 @@
Select month
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
13
選取月份
@@ -90,7 +90,7 @@
@@ -3154,7 +3186,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 317
+ 319
點擊以顯示。
@@ -3162,7 +3194,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 321
+ 323
Paperless-ngx 可以自動檢查更新
@@ -3170,7 +3202,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 328,330
+ 330,332
這是怎麼運作的?
@@ -3178,7 +3210,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 341
+ 343
有可用更新
@@ -3186,7 +3218,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 251
+ 264
側邊欄顯示方式已更新
@@ -3194,7 +3226,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 254
+ 267
更新側邊欄顯示方式時發生錯誤
@@ -3202,7 +3234,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 275
+ 288
儲存檢查更新設定時發生錯誤。
@@ -3634,7 +3666,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 111
src/app/components/common/input/date/date.component.html
@@ -3686,11 +3718,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 94
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 100
+ 101
是
@@ -3702,11 +3734,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 96
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 102
否
@@ -3714,11 +3746,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 69
+ 70
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 117
+ 118
搜尋文件⋯
@@ -3726,7 +3758,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 149
+ 150
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3738,7 +3770,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 151
+ 152
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3766,7 +3798,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 154
+ 155
不是
@@ -3774,7 +3806,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 173
+ 174
新增查詢
@@ -3782,7 +3814,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 176
+ 177
新增表達式
@@ -3798,18 +3830,6 @@
相對日期
-
- now
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 29
-
-
- src/app/components/common/dates-dropdown/dates-dropdown.component.html
- 105
-
- 現在
-
From
@@ -3858,11 +3878,19 @@
新增日期
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 169
+
+ 現在
+
Within 1 week
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 76
+ 81
1 週內
@@ -3870,7 +3898,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 81
+ 86
1 個月內
@@ -3878,7 +3906,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 91
3 個月內
@@ -3886,7 +3914,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 96
1 年內
@@ -3894,7 +3922,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 101
今年
@@ -3902,7 +3930,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 106
本月
@@ -3910,7 +3938,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 116
src/app/pipes/custom-date.pipe.ts
@@ -3918,6 +3946,38 @@
昨天
+
+ Previous week
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 121
+
+ 上週
+
+
+ Previous month
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 135
+
+ 上個月
+
+
+ Previous quarter
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 141
+
+ 上一季
+
+
+ Previous year
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.ts
+ 155
+
+ 去年
+
Matching algorithm
@@ -3978,7 +4038,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 171
+ 173
不區分大小寫
@@ -4450,7 +4510,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 265
指派文件類型
@@ -4470,7 +4530,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 266
指派關聯方
@@ -4482,7 +4542,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 111
+ 113
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4954,7 +5014,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 70
+ 72
建立新使用者帳號
@@ -4962,7 +5022,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 74
+ 76
編輯使用者帳號
@@ -4970,7 +5030,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 130
+ 132
TOTP 已停用
@@ -4978,11 +5038,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 133
+ 135
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 138
+ 140
TOTP 停用失敗
@@ -5046,7 +5106,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 121
+ 123
觸發基準
@@ -5054,7 +5114,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 125
設定排程觸發器的日期調整,以及要使用的日期欄位。
@@ -5062,7 +5122,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 128
+ 130
調整日期
@@ -5070,7 +5130,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 132
+ 134
正數值將於日期「之後」觸發,負數值將於日期「之前」觸發。
@@ -5078,7 +5138,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 137
+ 139
基於
@@ -5086,7 +5146,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
自訂欄位
@@ -5094,7 +5154,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 141
+ 143
用於調整日期的自訂欄位。
@@ -5102,7 +5162,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
重複執行
@@ -5110,7 +5170,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 147
+ 149
重複執行觸發器。
@@ -5118,7 +5178,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
重複執行間隔(天)
@@ -5126,7 +5186,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 151
+ 153
每隔 n 天重複執行觸發器。
@@ -5134,7 +5194,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 156
+ 158
對符合下列所有篩選條件的文件觸發動作。
@@ -5142,7 +5202,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
篩選檔案名稱
@@ -5150,7 +5210,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 159
+ 161
套用於符合此檔案名稱的文件。可使用萬用字元,如 *.pdf 或 *invoice*。不區分大小寫。
@@ -5158,7 +5218,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 163
篩選來源
@@ -5166,7 +5226,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
篩選路徑
@@ -5174,7 +5234,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 162
+ 164
套用於符合此路徑的文件。可使用萬用字元,如 *。大小寫已正規化。</a>
@@ -5182,7 +5242,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
篩選郵件規則
@@ -5190,7 +5250,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 165
套用於以此郵件規則處理的文件。
@@ -5198,7 +5258,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 166
+ 168
內容比對演算法
@@ -5206,7 +5266,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 170
內容比對模式
@@ -5214,39 +5274,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 181
+ 183
- Advanced Filters
+ 進階篩選條件
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 188
+ 190
- Add filter
+ 新增篩選條件
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 193
+ 195
- No advanced workflow filters defined.
+ 未定義進階工作流程篩選條件。
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 222,224
+ 224,226
- Complete the custom field query configuration.
+ 完成自訂欄位查詢設定。
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 256
+ 258
動作類型
@@ -5254,7 +5314,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
指派標題
@@ -5262,7 +5322,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 261
+ 263
可包含預留位置,詳見<a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>說明文件</a>。
@@ -5270,7 +5330,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 262
+ 264
指派標籤
@@ -5278,7 +5338,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 267
指派儲存路徑
@@ -5286,7 +5346,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 268
指派自訂欄位
@@ -5294,7 +5354,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 270
+ 272
指派擁有者
@@ -5302,7 +5362,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 274
指派檢視權限
@@ -5310,7 +5370,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 291
+ 293
指派編輯權限
@@ -5318,7 +5378,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 318
+ 320
移除標籤
@@ -5326,31 +5386,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 319
+ 321
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 325
+ 327
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 331
+ 333
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 337
+ 339
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 343
+ 345
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 350
+ 352
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 356
+ 358
移除全部
@@ -5358,7 +5418,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 324
+ 326
移除關聯方
@@ -5366,7 +5426,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 330
+ 332
移除文件類型
@@ -5374,7 +5434,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 336
+ 338
移除儲存路徑
@@ -5382,7 +5442,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 342
+ 344
移除自訂欄位
@@ -5390,7 +5450,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 349
+ 351
移除擁有者
@@ -5398,7 +5458,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 355
+ 357
移除權限
@@ -5406,7 +5466,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 360
檢視權限
@@ -5414,7 +5474,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 377
+ 379
編輯權限
@@ -5422,7 +5482,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 405
+ 407
電子郵件主旨
@@ -5430,7 +5490,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 406
+ 408
電子郵件正文
@@ -5438,7 +5498,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 409
電子郵件收件者
@@ -5446,7 +5506,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 410
附加文件
@@ -5454,7 +5514,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 416
+ 418
Webhook URL
@@ -5462,7 +5522,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 420
使用 Webhook Body 的參數
@@ -5470,7 +5530,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 419
+ 421
以 JSON 傳送 Webhook Payload
@@ -5478,7 +5538,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 422
+ 424
Webhook 參數
@@ -5486,7 +5546,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 426
Webhook Body
@@ -5494,7 +5554,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 428
Webhook 標頭
@@ -5502,7 +5562,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 427
+ 429
包含文件
@@ -5620,7 +5680,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Has any of these tags
+ 標籤包含
Has all of these tags
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Has all of these tags
+ 標籤符合
Does not have these tags
@@ -5636,7 +5696,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Does not have these tags
+ 標籤不包含
Has correspondent
@@ -5652,7 +5712,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Does not have correspondents
+ 關聯方不包含
Has document type
@@ -5668,7 +5728,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Does not have document types
+ 文件類型不包含
Has storage path
@@ -5684,7 +5744,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Does not have storage paths
+ 儲存路徑不包含
Matches custom field query
@@ -5692,7 +5752,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Matches custom field query
+ 符合自訂欄位查詢
Create new workflow
@@ -5716,7 +5776,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
+ {VAR_PLURAL, plural, =1 {以郵件傳送一份文件} other {以郵件傳送 份文件}}
Email address(es)
@@ -5768,7 +5828,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Some email servers may reject messages with large attachments.
+ 有些電子郵件伺服器可能會拒絕含有大型附件的郵件。
Email sent
@@ -5784,7 +5844,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Error emailing documents
+ 以電子郵件傳送文件時發生錯誤
Error emailing document
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 82
+ 95
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未被指派的
@@ -5867,7 +5927,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 562
+ 767
開啟 篩選器
@@ -5947,7 +6007,7 @@
src/app/components/common/input/select/select.component.html
- 60
+ 61
src/app/components/common/input/tags/tags.component.html
@@ -6620,7 +6680,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 192
+ 193
設定檔更新成功
@@ -6628,7 +6688,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 206
+ 207
儲存設定檔時發生錯誤
@@ -6636,7 +6696,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 223
+ 225
產生驗證 Token 時發生錯誤
@@ -6644,7 +6704,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 248
+ 250
連接社群帳號時發生錯誤
@@ -6652,7 +6712,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 267
+ 269
擷取 TOTP 時發生錯誤
@@ -6660,7 +6720,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 288
+ 290
TOTP 啟用成功
@@ -6668,11 +6728,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 292
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 296
+ 298
啟用 TOTP 時發生錯誤
@@ -6680,7 +6740,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 312
+ 314
TOTP 停用成功
@@ -6688,11 +6748,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 316
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 319
+ 321
停用 TOTP 時發生錯誤
@@ -7368,7 +7428,7 @@
src/app/components/document-list/document-list.component.html
27
- 頁面
+ 目前頁面
of
@@ -7482,7 +7542,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 179
+ 195
src/app/data/document.ts
@@ -8006,7 +8066,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1455
+ 1460
列印失敗。
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
載入列印文件時發生錯誤
@@ -8022,11 +8082,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1528
+ 1537
src/app/components/document-detail/document-detail.component.ts
- 1532
+ 1541
讀取 TIFF 檔時發生錯誤:
@@ -8106,7 +8166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 187
+ 203
自訂欄位
@@ -8600,7 +8660,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
20
- 開關標籤篩選器
+ 開關標籤篩選條件
Toggle correspondent filter
@@ -8608,7 +8668,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
43
- 開關關聯方篩選器
+ 開關關聯方篩選條件
Toggle document type filter
@@ -8616,7 +8676,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
59
- 開關文件類型篩選器
+ 開關文件類型篩選條件
Toggle storage path filter
@@ -8624,7 +8684,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
66
- 開關儲存路徑篩選器
+ 開關儲存路徑篩選條件
Select
@@ -8656,7 +8716,7 @@
src/app/components/document-list/document-list.component.ts
315
- 選取頁面
+ 選取目前頁面
Select all
@@ -8670,6 +8730,14 @@
選取全部
+
+ Select:
+
+ src/app/components/document-list/document-list.component.html
+ 18
+
+ 選取:
+
None
@@ -8686,18 +8754,6 @@
無
-
- Show
-
- src/app/components/document-list/document-list.component.html
- 37
-
-
- src/app/components/manage/saved-views/saved-views.component.html
- 52
-
- 顯示
-
Sort
@@ -8760,7 +8816,7 @@
src/app/components/document-list/document-list.component.html
143
- (已套用篩選器)
+ (已套用篩選條件)
Reset filters
@@ -8772,7 +8828,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
107
- 重置篩選器
+ 重置篩選條件
Error while loading documents
@@ -8798,7 +8854,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 184
+ 200
src/app/data/document.ts
@@ -8956,7 +9012,7 @@
src/app/components/document-list/document-list.component.ts
296
- 重置篩選器/選項
+ 重置篩條件/選項
Open first [selected] document
@@ -9018,7 +9074,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 182
+ 198
標題與內容
@@ -9026,7 +9082,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 189
+ 205
檔案類型
@@ -9034,7 +9090,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 214
相似於
@@ -9042,7 +9098,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 204
+ 220
等於
@@ -9050,7 +9106,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 208
+ 224
為空白
@@ -9058,7 +9114,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 212
+ 228
不為空白
@@ -9066,7 +9122,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 216
+ 232
大於
@@ -9074,7 +9130,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 236
小於
@@ -9082,7 +9138,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 261,265
+ 277,281
關聯方:
@@ -9090,7 +9146,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 267
+ 283
沒有關聯方
@@ -9098,7 +9154,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 273,277
+ 289,293
文件類型:
@@ -9106,7 +9162,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 279
+ 295
沒有文件類型
@@ -9114,7 +9170,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 285,289
+ 301,305
儲存路徑:
@@ -9122,7 +9178,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 291
+ 307
沒有儲存路徑
@@ -9130,7 +9186,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295,297
+ 311,313
標籤:
@@ -9138,7 +9194,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301
+ 317
沒有任何標籤
@@ -9146,7 +9202,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 305
+ 321
自訂欄位查詢
@@ -9154,7 +9210,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 308
+ 324
標題:
@@ -9162,7 +9218,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311
+ 327
封存序號 (ANS):
@@ -9170,7 +9226,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 314
+ 330
擁有者:
@@ -9178,7 +9234,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 333
擁有者不包含:
@@ -9186,7 +9242,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 320
+ 336
沒有擁有者
@@ -9766,7 +9822,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 343
+ 349
更新權限時發生錯誤
@@ -9954,7 +10010,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 336
+ 342
權限更新成功
@@ -9962,7 +10018,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 357
+ 363
將永久刪除全部的項目。
@@ -9970,7 +10026,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 371
+ 377
項目刪除成功
@@ -9978,7 +10034,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 383
刪除項目時發生錯誤
diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py
index 3a0ffd9fb..48cd57311 100644
--- a/src/documents/file_handling.py
+++ b/src/documents/file_handling.py
@@ -99,6 +99,29 @@ def generate_unique_filename(doc, *, archive_filename=False) -> Path:
return new_filename
+def format_filename(document: Document, template_str: str) -> str | None:
+ rendered_filename = validate_filepath_template_and_render(
+ template_str,
+ document,
+ )
+ if rendered_filename is None:
+ return None
+
+ # Apply this setting. It could become a filter in the future (or users could use |default)
+ if settings.FILENAME_FORMAT_REMOVE_NONE:
+ rendered_filename = rendered_filename.replace("/-none-/", "/")
+ rendered_filename = rendered_filename.replace(" -none-", "")
+ rendered_filename = rendered_filename.replace("-none-", "")
+ rendered_filename = rendered_filename.strip(os.sep)
+
+ rendered_filename = rendered_filename.replace(
+ "-none-",
+ "none",
+ ) # backward compatibility
+
+ return rendered_filename
+
+
def generate_filename(
doc: Document,
*,
@@ -108,28 +131,6 @@ def generate_filename(
) -> Path:
base_path: Path | None = None
- def format_filename(document: Document, template_str: str) -> str | None:
- rendered_filename = validate_filepath_template_and_render(
- template_str,
- document,
- )
- if rendered_filename is None:
- return None
-
- # Apply this setting. It could become a filter in the future (or users could use |default)
- if settings.FILENAME_FORMAT_REMOVE_NONE:
- rendered_filename = rendered_filename.replace("/-none-/", "/")
- rendered_filename = rendered_filename.replace(" -none-", "")
- rendered_filename = rendered_filename.replace("-none-", "")
- rendered_filename = rendered_filename.strip(os.sep)
-
- rendered_filename = rendered_filename.replace(
- "-none-",
- "none",
- ) # backward compatibility
-
- return rendered_filename
-
# Determine the source of the format string
if doc.storage_path is not None:
filename_format = doc.storage_path.path
diff --git a/src/documents/filters.py b/src/documents/filters.py
index 87274f9fa..54f3c1fa0 100644
--- a/src/documents/filters.py
+++ b/src/documents/filters.py
@@ -92,6 +92,12 @@ class TagFilterSet(FilterSet):
"name": CHAR_KWARGS,
}
+ is_root = BooleanFilter(
+ label="Is root tag",
+ field_name="tn_parent",
+ lookup_expr="isnull",
+ )
+
class DocumentTypeFilterSet(FilterSet):
class Meta:
@@ -154,6 +160,7 @@ class InboxFilter(Filter):
@extend_schema_field(serializers.CharField)
class TitleContentFilter(Filter):
def filter(self, qs, value):
+ value = value.strip() if isinstance(value, str) else value
if value:
return qs.filter(Q(title__icontains=value) | Q(content__icontains=value))
else:
@@ -208,6 +215,7 @@ class CustomFieldFilterSet(FilterSet):
@extend_schema_field(serializers.CharField)
class CustomFieldsFilter(Filter):
def filter(self, qs, value):
+ value = value.strip() if isinstance(value, str) else value
if value:
fields_with_matching_selects = CustomField.objects.filter(
extra_data__icontains=value,
@@ -238,6 +246,7 @@ class CustomFieldsFilter(Filter):
class MimeTypeFilter(Filter):
def filter(self, qs, value):
+ value = value.strip() if isinstance(value, str) else value
if value:
return qs.filter(mime_type__icontains=value)
else:
diff --git a/src/documents/index.py b/src/documents/index.py
index 90cbb8000..6b994ac8c 100644
--- a/src/documents/index.py
+++ b/src/documents/index.py
@@ -13,6 +13,7 @@ from shutil import rmtree
from typing import TYPE_CHECKING
from typing import Literal
+from dateutil.relativedelta import relativedelta
from django.conf import settings
from django.utils import timezone as django_timezone
from django.utils.timezone import get_current_timezone
@@ -287,15 +288,75 @@ class DelayedQuery:
self.first_score = None
self.filter_queryset = filter_queryset
self.suggested_correction = None
+ self._manual_hits_cache: list | None = None
def __len__(self) -> int:
+ if self._manual_sort_requested():
+ manual_hits = self._manual_hits()
+ return len(manual_hits)
+
page = self[0:1]
return len(page)
+ def _manual_sort_requested(self):
+ ordering = self.query_params.get("ordering", "")
+ return ordering.lstrip("-").startswith("custom_field_")
+
+ def _manual_hits(self):
+ if self._manual_hits_cache is None:
+ q, mask, suggested_correction = self._get_query()
+ self.suggested_correction = suggested_correction
+
+ results = self.searcher.search(
+ q,
+ mask=mask,
+ filter=MappedDocIdSet(self.filter_queryset, self.searcher.ixreader),
+ limit=None,
+ )
+ results.fragmenter = highlight.ContextFragmenter(surround=50)
+ results.formatter = HtmlFormatter(tagname="span", between=" ... ")
+
+ if not self.first_score and len(results) > 0:
+ self.first_score = results[0].score
+
+ if self.first_score:
+ results.top_n = [
+ (
+ (hit[0] / self.first_score) if self.first_score else None,
+ hit[1],
+ )
+ for hit in results.top_n
+ ]
+
+ hits_by_id = {hit["id"]: hit for hit in results}
+ matching_ids = list(hits_by_id.keys())
+
+ ordered_ids = list(
+ self.filter_queryset.filter(id__in=matching_ids).values_list(
+ "id",
+ flat=True,
+ ),
+ )
+ ordered_ids = list(dict.fromkeys(ordered_ids))
+
+ self._manual_hits_cache = [
+ hits_by_id[_id] for _id in ordered_ids if _id in hits_by_id
+ ]
+ return self._manual_hits_cache
+
def __getitem__(self, item):
if item.start in self.saved_results:
return self.saved_results[item.start]
+ if self._manual_sort_requested():
+ manual_hits = self._manual_hits()
+ start = 0 if item.start is None else item.start
+ stop = item.stop
+ hits = manual_hits[start:stop] if stop is not None else manual_hits[start:]
+ page = ManualResultsPage(hits)
+ self.saved_results[start] = page
+ return page
+
q, mask, suggested_correction = self._get_query()
self.suggested_correction = suggested_correction
sortedby, reverse = self._get_query_sortedby()
@@ -315,21 +376,33 @@ class DelayedQuery:
if not self.first_score and len(page.results) > 0 and sortedby is None:
self.first_score = page.results[0].score
- page.results.top_n = list(
- map(
- lambda hit: (
- (hit[0] / self.first_score) if self.first_score else None,
- hit[1],
- ),
- page.results.top_n,
- ),
- )
+ page.results.top_n = [
+ (
+ (hit[0] / self.first_score) if self.first_score else None,
+ hit[1],
+ )
+ for hit in page.results.top_n
+ ]
self.saved_results[item.start] = page
return page
+class ManualResultsPage(list):
+ def __init__(self, hits):
+ super().__init__(hits)
+ self.results = ManualResults(hits)
+
+
+class ManualResults:
+ def __init__(self, hits):
+ self._docnums = [hit.docnum for hit in hits]
+
+ def docs(self):
+ return self._docnums
+
+
class LocalDateParser(English):
def reverse_timezone_offset(self, d):
return (d.replace(tzinfo=django_timezone.get_current_timezone())).astimezone(
@@ -461,32 +534,84 @@ def get_permissions_criterias(user: User | None = None) -> list:
def rewrite_natural_date_keywords(query_string: str) -> str:
"""
Rewrites natural date keywords (e.g. added:today or added:"yesterday") to UTC range syntax for Whoosh.
+ This resolves timezone issues with date parsing in Whoosh as well as adding support for more
+ natural date keywords.
"""
tz = get_current_timezone()
local_now = now().astimezone(tz)
-
today = local_now.date()
- yesterday = today - timedelta(days=1)
- ranges = {
- "today": (
- datetime.combine(today, time.min, tzinfo=tz),
- datetime.combine(today, time.max, tzinfo=tz),
- ),
- "yesterday": (
- datetime.combine(yesterday, time.min, tzinfo=tz),
- datetime.combine(yesterday, time.max, tzinfo=tz),
- ),
- }
-
- pattern = r"(\b(?:added|created))\s*:\s*[\"']?(today|yesterday)[\"']?"
+ # all supported Keywords
+ pattern = r"(\b(?:added|created|modified))\s*:\s*[\"']?(today|yesterday|this month|previous month|previous week|previous quarter|this year|previous year)[\"']?"
def repl(m):
- field, keyword = m.group(1), m.group(2)
- start, end = ranges[keyword]
+ field = m.group(1)
+ keyword = m.group(2).lower()
+
+ match keyword:
+ case "today":
+ start = datetime.combine(today, time.min, tzinfo=tz)
+ end = datetime.combine(today, time.max, tzinfo=tz)
+
+ case "yesterday":
+ yesterday = today - timedelta(days=1)
+ start = datetime.combine(yesterday, time.min, tzinfo=tz)
+ end = datetime.combine(yesterday, time.max, tzinfo=tz)
+
+ case "this month":
+ start = datetime(local_now.year, local_now.month, 1, 0, 0, 0, tzinfo=tz)
+ end = start + relativedelta(months=1) - timedelta(seconds=1)
+
+ case "previous month":
+ this_month_start = datetime(
+ local_now.year,
+ local_now.month,
+ 1,
+ 0,
+ 0,
+ 0,
+ tzinfo=tz,
+ )
+ start = this_month_start - relativedelta(months=1)
+ end = this_month_start - timedelta(seconds=1)
+
+ case "this year":
+ start = datetime(local_now.year, 1, 1, 0, 0, 0, tzinfo=tz)
+ end = datetime.combine(today, time.max, tzinfo=tz)
+
+ case "previous week":
+ days_since_monday = local_now.weekday()
+ this_week_start = datetime.combine(
+ today - timedelta(days=days_since_monday),
+ time.min,
+ tzinfo=tz,
+ )
+ start = this_week_start - timedelta(days=7)
+ end = this_week_start - timedelta(seconds=1)
+
+ case "previous quarter":
+ current_quarter = (local_now.month - 1) // 3 + 1
+ this_quarter_start_month = (current_quarter - 1) * 3 + 1
+ this_quarter_start = datetime(
+ local_now.year,
+ this_quarter_start_month,
+ 1,
+ 0,
+ 0,
+ 0,
+ tzinfo=tz,
+ )
+ start = this_quarter_start - relativedelta(months=3)
+ end = this_quarter_start - timedelta(seconds=1)
+
+ case "previous year":
+ start = datetime(local_now.year - 1, 1, 1, 0, 0, 0, tzinfo=tz)
+ end = datetime(local_now.year - 1, 12, 31, 23, 59, 59, tzinfo=tz)
+
+ # Convert to UTC and format
start_str = start.astimezone(timezone.utc).strftime("%Y%m%d%H%M%S")
end_str = end.astimezone(timezone.utc).strftime("%Y%m%d%H%M%S")
return f"{field}:[{start_str} TO {end_str}]"
- return re.sub(pattern, repl, query_string)
+ return re.sub(pattern, repl, query_string, flags=re.IGNORECASE)
diff --git a/src/documents/mail.py b/src/documents/mail.py
index 240b41e18..21bf03c7a 100644
--- a/src/documents/mail.py
+++ b/src/documents/mail.py
@@ -1,23 +1,26 @@
from __future__ import annotations
+from dataclasses import dataclass
from email import message_from_bytes
-from typing import TYPE_CHECKING
+from pathlib import Path
from django.conf import settings
from django.core.mail import EmailMessage
from filelock import FileLock
-if TYPE_CHECKING:
- from documents.models import Document
+
+@dataclass(frozen=True)
+class EmailAttachment:
+ path: Path
+ mime_type: str
+ friendly_name: str
def send_email(
subject: str,
body: str,
to: list[str],
- attachments: list[Document],
- *,
- use_archive: bool,
+ attachments: list[EmailAttachment],
) -> int:
"""
Send an email with attachments.
@@ -26,8 +29,7 @@ def send_email(
subject: Email subject
body: Email body text
to: List of recipient email addresses
- attachments: List of documents to attach (the list may be empty)
- use_archive: Whether to attach archive versions when available
+ attachments: List of attachments
Returns:
Number of emails sent
@@ -44,44 +46,41 @@ def send_email(
# Something could be renaming the file concurrently so it can't be attached
with FileLock(settings.MEDIA_LOCK):
- for document in attachments:
- attachment_path = (
- document.archive_path
- if use_archive and document.has_archive_version
- else document.source_path
- )
-
- friendly_filename = _get_unique_filename(
- document,
+ for attachment in attachments:
+ filename = _get_unique_filename(
+ attachment.friendly_name,
used_filenames,
- archive=use_archive and document.has_archive_version,
)
- used_filenames.add(friendly_filename)
+ used_filenames.add(filename)
- with attachment_path.open("rb") as f:
+ with attachment.path.open("rb") as f:
content = f.read()
- if document.mime_type == "message/rfc822":
+ if attachment.mime_type == "message/rfc822":
# See https://forum.djangoproject.com/t/using-emailmessage-with-an-attached-email-file-crashes-due-to-non-ascii/37981
content = message_from_bytes(content)
email.attach(
- filename=friendly_filename,
+ filename=filename,
content=content,
- mimetype=document.mime_type,
+ mimetype=attachment.mime_type,
)
return email.send()
-def _get_unique_filename(doc: Document, used_names: set[str], *, archive: bool) -> str:
+def _get_unique_filename(friendly_name: str, used_names: set[str]) -> str:
"""
- Constructs a unique friendly filename for the given document.
+ Constructs a unique friendly filename for the given document, append a counter if needed.
+ """
+ if friendly_name not in used_names:
+ return friendly_name
- The filename might not be unique enough, so a counter is appended if needed.
- """
- counter = 0
+ stem = Path(friendly_name).stem
+ suffix = "".join(Path(friendly_name).suffixes)
+
+ counter = 1
while True:
- filename = doc.get_public_filename(archive=archive, counter=counter)
+ filename = f"{stem}_{counter:02}{suffix}"
if filename not in used_names:
return filename
counter += 1
diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py
index 282f5c48e..3e614c6a6 100644
--- a/src/documents/management/commands/document_importer.py
+++ b/src/documents/management/commands/document_importer.py
@@ -48,12 +48,13 @@ if settings.AUDIT_LOG_ENABLED:
@contextmanager
-def disable_signal(sig, receiver, sender) -> Generator:
+def disable_signal(sig, receiver, sender, *, weak: bool | None = None) -> Generator:
try:
sig.disconnect(receiver=receiver, sender=sender)
yield
finally:
- sig.connect(receiver=receiver, sender=sender)
+ kwargs = {"weak": weak} if weak is not None else {}
+ sig.connect(receiver=receiver, sender=sender, **kwargs)
class Command(CryptMixin, BaseCommand):
@@ -258,16 +259,19 @@ class Command(CryptMixin, BaseCommand):
post_save,
receiver=update_filename_and_move_files,
sender=Document,
+ weak=False,
),
disable_signal(
m2m_changed,
receiver=update_filename_and_move_files,
sender=Document.tags.through,
+ weak=False,
),
disable_signal(
post_save,
receiver=update_filename_and_move_files,
sender=CustomFieldInstance,
+ weak=False,
),
disable_signal(
post_save,
diff --git a/src/documents/migrations/1073_migrate_workflow_title_jinja.py b/src/documents/migrations/1073_migrate_workflow_title_jinja.py
index 3f5689629..9d80a277f 100644
--- a/src/documents/migrations/1073_migrate_workflow_title_jinja.py
+++ b/src/documents/migrations/1073_migrate_workflow_title_jinja.py
@@ -3,7 +3,6 @@ import logging
from django.db import migrations
from django.db import models
-from django.db import transaction
from documents.templating.utils import convert_format_str_to_template_format
@@ -11,21 +10,34 @@ logger = logging.getLogger("paperless.migrations")
def convert_from_format_to_template(apps, schema_editor):
- WorkflowActions = apps.get_model("documents", "WorkflowAction")
+ WorkflowAction = apps.get_model("documents", "WorkflowAction")
- with transaction.atomic():
- for WorkflowAction in WorkflowActions.objects.all():
- if not WorkflowAction.assign_title:
- continue
- WorkflowAction.assign_title = convert_format_str_to_template_format(
- WorkflowAction.assign_title,
- )
- logger.debug(
- "Converted WorkflowAction id %d title to template format: %s",
- WorkflowAction.id,
- WorkflowAction.assign_title,
- )
- WorkflowAction.save()
+ batch_size = 500
+ actions_to_update = []
+
+ queryset = (
+ WorkflowAction.objects.filter(assign_title__isnull=False)
+ .exclude(assign_title="")
+ .only("id", "assign_title")
+ )
+
+ for action in queryset:
+ action.assign_title = convert_format_str_to_template_format(
+ action.assign_title,
+ )
+ logger.debug(
+ "Converted WorkflowAction id %d title to template format: %s",
+ action.id,
+ action.assign_title,
+ )
+ actions_to_update.append(action)
+
+ if actions_to_update:
+ WorkflowAction.objects.bulk_update(
+ actions_to_update,
+ ["assign_title"],
+ batch_size=batch_size,
+ )
class Migration(migrations.Migration):
@@ -35,15 +47,13 @@ class Migration(migrations.Migration):
operations = [
migrations.AlterField(
- model_name="WorkflowAction",
+ model_name="workflowaction",
name="assign_title",
field=models.TextField(
- null=True,
blank=True,
- help_text=(
- "Assign a document title, can be a JINJA2 template, "
- "see documentation.",
- ),
+ help_text="Assign a document title, must be a Jinja2 template, see documentation.",
+ null=True,
+ verbose_name="assign title",
),
),
migrations.RunPython(
diff --git a/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py
new file mode 100644
index 000000000..4381eabb1
--- /dev/null
+++ b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py
@@ -0,0 +1,28 @@
+# Generated by Django 5.2.6 on 2025-10-27 15:11
+
+from django.db import migrations
+from django.db import models
+
+
+class Migration(migrations.Migration):
+ dependencies = [
+ ("documents", "1073_migrate_workflow_title_jinja"),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name="workflowrun",
+ name="deleted_at",
+ field=models.DateTimeField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name="workflowrun",
+ name="restored_at",
+ field=models.DateTimeField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name="workflowrun",
+ name="transaction_id",
+ field=models.UUIDField(blank=True, null=True),
+ ),
+ ]
diff --git a/src/documents/models.py b/src/documents/models.py
index 4794bc82f..12dab2b6d 100644
--- a/src/documents/models.py
+++ b/src/documents/models.py
@@ -1547,7 +1547,7 @@ class Workflow(models.Model):
return f"Workflow: {self.name}"
-class WorkflowRun(models.Model):
+class WorkflowRun(SoftDeleteModel):
workflow = models.ForeignKey(
Workflow,
on_delete=models.CASCADE,
diff --git a/src/documents/permissions.py b/src/documents/permissions.py
index a2b165fd8..cf6a9aa35 100644
--- a/src/documents/permissions.py
+++ b/src/documents/permissions.py
@@ -164,6 +164,24 @@ def has_perms_owner_aware(user, perms, obj):
return obj.owner is None or obj.owner == user or checker.has_perm(perms, obj)
+class ViewDocumentsPermissions(BasePermission):
+ """
+ Permissions class that checks for model permissions for only viewing Documents.
+ """
+
+ perms_map = {
+ "OPTIONS": ["documents.view_document"],
+ "GET": ["documents.view_document"],
+ "POST": ["documents.view_document"],
+ }
+
+ def has_permission(self, request, view):
+ if not request.user or (not request.user.is_authenticated): # pragma: no cover
+ return False
+
+ return request.user.has_perms(self.perms_map.get(request.method, []))
+
+
class PaperlessNotePermissions(BasePermission):
"""
Permissions class that checks for model permissions for Notes.
diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py
index 25207bdfa..f04bb70da 100644
--- a/src/documents/serialisers.py
+++ b/src/documents/serialisers.py
@@ -1041,7 +1041,7 @@ class DocumentSerializer(
request.version if request else settings.REST_FRAMEWORK["DEFAULT_VERSION"],
)
- if api_version < 9:
+ if api_version < 9 and "created" in self.fields:
# provide created as a datetime for backwards compatibility
from django.utils import timezone
diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py
index 8862b064b..e410b54e2 100644
--- a/src/documents/signals/handlers.py
+++ b/src/documents/signals/handlers.py
@@ -34,6 +34,7 @@ from documents.caching import clear_document_caches
from documents.file_handling import create_source_path_directory
from documents.file_handling import delete_empty_directories
from documents.file_handling import generate_unique_filename
+from documents.mail import EmailAttachment
from documents.mail import send_email
from documents.models import Correspondent
from documents.models import CustomField
@@ -392,9 +393,9 @@ class CannotMoveFilesException(Exception):
# should be disabled in /src/documents/management/commands/document_importer.py handle
-@receiver(models.signals.post_save, sender=CustomFieldInstance)
-@receiver(models.signals.m2m_changed, sender=Document.tags.through)
-@receiver(models.signals.post_save, sender=Document)
+@receiver(models.signals.post_save, sender=CustomFieldInstance, weak=False)
+@receiver(models.signals.m2m_changed, sender=Document.tags.through, weak=False)
+@receiver(models.signals.post_save, sender=Document, weak=False)
def update_filename_and_move_files(
sender,
instance: Document | CustomFieldInstance,
@@ -531,34 +532,43 @@ def update_filename_and_move_files(
)
-# should be disabled in /src/documents/management/commands/document_importer.py handle
-@receiver(models.signals.post_save, sender=CustomField)
-def check_paths_and_prune_custom_fields(sender, instance: CustomField, **kwargs):
+@shared_task
+def process_cf_select_update(custom_field: CustomField):
"""
- When a custom field is updated:
+ Update documents tied to a select custom field:
+
1. 'Select' custom field instances get their end-user value (e.g. in file names) from the select_options in extra_data,
which is contained in the custom field itself. So when the field is changed, we (may) need to update the file names
of all documents that have this custom field.
2. If a 'Select' field option was removed, we need to nullify the custom field instances that have the option.
"""
+ select_options = {
+ option["id"]: option["label"]
+ for option in custom_field.extra_data.get("select_options", [])
+ }
+
+ # Clear select values that no longer exist
+ custom_field.fields.exclude(
+ value_select__in=select_options.keys(),
+ ).update(value_select=None)
+
+ for cf_instance in custom_field.fields.select_related("document").iterator():
+ # Update the filename and move files if necessary
+ update_filename_and_move_files(CustomFieldInstance, cf_instance)
+
+
+# should be disabled in /src/documents/management/commands/document_importer.py handle
+@receiver(models.signals.post_save, sender=CustomField)
+def check_paths_and_prune_custom_fields(sender, instance: CustomField, **kwargs):
+ """
+ When a custom field is updated, check if we need to update any documents. Done async to avoid slowing down the save operation.
+ """
if (
instance.data_type == CustomField.FieldDataType.SELECT
and instance.fields.count() > 0
and instance.extra_data
): # Only select fields, for now
- select_options = {
- option["id"]: option["label"]
- for option in instance.extra_data.get("select_options", [])
- }
-
- for cf_instance in instance.fields.all():
- # Check if the current value is still a valid option
- if cf_instance.value not in select_options:
- cf_instance.value_select = None
- cf_instance.save(update_fields=["value_select"])
-
- # Update the filename and move files if necessary
- update_filename_and_move_files(sender, cf_instance)
+ process_cf_select_update.delay(instance)
@receiver(models.signals.post_delete, sender=CustomField)
@@ -1094,7 +1104,9 @@ def run_workflows(
if not use_overrides:
title = document.title
- doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/"
+ doc_url = (
+ f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/"
+ )
correspondent = (
document.correspondent.name if document.correspondent else ""
)
@@ -1162,15 +1174,41 @@ def run_workflows(
else ""
)
try:
- attachments = []
- if action.email.include_document and original_file:
- attachments = [document]
+ attachments: list[EmailAttachment] = []
+ if action.email.include_document:
+ attachment: EmailAttachment | None = None
+ if trigger_type in [
+ WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
+ WorkflowTrigger.WorkflowTriggerType.SCHEDULED,
+ ] and isinstance(document, Document):
+ friendly_name = (
+ Path(current_filename).name
+ if current_filename
+ else document.source_path.name
+ )
+ attachment = EmailAttachment(
+ path=document.source_path,
+ mime_type=document.mime_type,
+ friendly_name=friendly_name,
+ )
+ elif original_file:
+ friendly_name = (
+ Path(current_filename).name
+ if current_filename
+ else original_file.name
+ )
+ attachment = EmailAttachment(
+ path=original_file,
+ mime_type=document.mime_type,
+ friendly_name=friendly_name,
+ )
+ if attachment:
+ attachments = [attachment]
n_messages = send_email(
subject=subject,
body=body,
to=action.email.to.split(","),
attachments=attachments,
- use_archive=False,
)
logger.debug(
f"Sent {n_messages} notification email(s) to {action.email.to}",
@@ -1185,7 +1223,9 @@ def run_workflows(
def webhook_action():
if not use_overrides:
title = document.title
- doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/"
+ doc_url = (
+ f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/"
+ )
correspondent = (
document.correspondent.name if document.correspondent else ""
)
diff --git a/src/documents/templating/filepath.py b/src/documents/templating/filepath.py
index 00de8de2c..7d76e7f31 100644
--- a/src/documents/templating/filepath.py
+++ b/src/documents/templating/filepath.py
@@ -52,6 +52,33 @@ class FilePathTemplate(Template):
return clean_filepath(original_render)
+class PlaceholderString(str):
+ """
+ String subclass used as a sentinel for empty metadata values inside templates.
+
+ - Renders as \"-none-\" to preserve existing filename cleaning logic.
+ - Compares equal to either \"-none-\" or \"none\" so templates can check for either.
+ - Evaluates to False so {% if correspondent %} behaves intuitively.
+ """
+
+ def __new__(cls, value: str = "-none-"):
+ return super().__new__(cls, value)
+
+ def __bool__(self) -> bool:
+ return False
+
+ def __eq__(self, other) -> bool:
+ if isinstance(other, str) and other == "none":
+ other = "-none-"
+ return super().__eq__(other)
+
+ def __ne__(self, other) -> bool:
+ return not self.__eq__(other)
+
+
+NO_VALUE_PLACEHOLDER = PlaceholderString("-none-")
+
+
_template_environment.undefined = _LogStrictUndefined
_template_environment.filters["get_cf_value"] = get_cf_value
@@ -128,7 +155,7 @@ def get_added_date_context(document: Document) -> dict[str, str]:
def get_basic_metadata_context(
document: Document,
*,
- no_value_default: str,
+ no_value_default: str = NO_VALUE_PLACEHOLDER,
) -> dict[str, str]:
"""
Given a Document, constructs some basic information about it. If certain values are not set,
@@ -266,7 +293,7 @@ def validate_filepath_template_and_render(
# Build the context dictionary
context = (
{"document": document}
- | get_basic_metadata_context(document, no_value_default="-none-")
+ | get_basic_metadata_context(document, no_value_default=NO_VALUE_PLACEHOLDER)
| get_creation_date_context(document)
| get_added_date_context(document)
| get_tags_context(tags_list)
diff --git a/src/documents/templating/workflows.py b/src/documents/templating/workflows.py
index 25f1e57ef..67f3ac930 100644
--- a/src/documents/templating/workflows.py
+++ b/src/documents/templating/workflows.py
@@ -80,7 +80,7 @@ def parse_w_workflow_placeholders(
if doc_url is not None:
formatting.update({"doc_url": doc_url})
- logger.debug(f"Jinja Template is : {text}")
+ logger.debug(f"Parsing Workflow Jinja template: {text}")
try:
template = _template_environment.from_string(
text,
diff --git a/src/documents/tests/test_admin.py b/src/documents/tests/test_admin.py
index 278014f7c..61a579dc7 100644
--- a/src/documents/tests/test_admin.py
+++ b/src/documents/tests/test_admin.py
@@ -2,9 +2,11 @@ import types
from unittest.mock import patch
from django.contrib.admin.sites import AdminSite
+from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
from django.test import TestCase
from django.utils import timezone
+from rest_framework import status
from documents import index
from documents.admin import DocumentAdmin
@@ -125,3 +127,36 @@ class TestPaperlessAdmin(DirectoriesMixin, TestCase):
form.request = types.SimpleNamespace(user=superuser)
self.assertTrue(form.is_valid())
self.assertEqual({}, form.errors)
+
+ def test_superuser_can_only_be_modified_by_superuser(self):
+ superuser = User.objects.create_superuser(username="superuser", password="test")
+ user = User.objects.create(
+ username="test",
+ is_superuser=False,
+ is_staff=True,
+ )
+ change_user_perm = Permission.objects.get(codename="change_user")
+ user.user_permissions.add(change_user_perm)
+
+ self.client.force_login(user)
+ response = self.client.patch(
+ f"/api/users/{superuser.pk}/",
+ {"first_name": "Updated"},
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
+ self.assertEqual(
+ response.content.decode(),
+ "Superusers can only be modified by other superusers",
+ )
+
+ self.client.logout()
+ self.client.force_login(superuser)
+ response = self.client.patch(
+ f"/api/users/{superuser.pk}/",
+ {"first_name": "Updated"},
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ superuser.refresh_from_db()
+ self.assertEqual(superuser.first_name, "Updated")
diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py
index 8e24226dc..8cc8f2cb2 100644
--- a/src/documents/tests/test_api_custom_fields.py
+++ b/src/documents/tests/test_api_custom_fields.py
@@ -1,9 +1,11 @@
import json
from datetime import date
+from unittest import mock
from unittest.mock import ANY
from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
+from django.test import override_settings
from rest_framework import status
from rest_framework.test import APITestCase
@@ -211,6 +213,7 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase):
],
)
+ @override_settings(CELERY_TASK_ALWAYS_EAGER=True)
def test_custom_field_select_options_pruned(self):
"""
GIVEN:
@@ -242,7 +245,7 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase):
CustomFieldInstance.objects.create(
document=doc,
field=custom_field_select,
- value_text="abc-123",
+ value_select="def-456",
)
resp = self.client.patch(
@@ -274,6 +277,52 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase):
doc.refresh_from_db()
self.assertEqual(doc.custom_fields.first().value, None)
+ @mock.patch("documents.signals.handlers.process_cf_select_update.delay")
+ def test_custom_field_update_offloaded_once(self, mock_delay):
+ """
+ GIVEN:
+ - A select custom field attached to multiple documents
+ WHEN:
+ - The select options are updated
+ THEN:
+ - The async update task is enqueued once
+ """
+ cf_select = CustomField.objects.create(
+ name="Select Field",
+ data_type=CustomField.FieldDataType.SELECT,
+ extra_data={
+ "select_options": [
+ {"label": "Option 1", "id": "abc-123"},
+ {"label": "Option 2", "id": "def-456"},
+ ],
+ },
+ )
+
+ documents = [
+ Document.objects.create(
+ title="WOW",
+ content="the content",
+ checksum=f"{i}",
+ mime_type="application/pdf",
+ )
+ for i in range(3)
+ ]
+ for document in documents:
+ CustomFieldInstance.objects.create(
+ document=document,
+ field=cf_select,
+ value_select="def-456",
+ )
+
+ cf_select.extra_data = {
+ "select_options": [
+ {"label": "Option 1", "id": "abc-123"},
+ ],
+ }
+ cf_select.save()
+
+ mock_delay.assert_called_once_with(cf_select)
+
def test_custom_field_select_old_version(self):
"""
GIVEN:
diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py
index 3f7b2c385..87190c23b 100644
--- a/src/documents/tests/test_api_documents.py
+++ b/src/documents/tests/test_api_documents.py
@@ -172,6 +172,35 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
results = response.data["results"]
self.assertEqual(len(results[0]), 0)
+ def test_document_fields_api_version_8_respects_created(self):
+ Document.objects.create(
+ title="legacy",
+ checksum="123",
+ mime_type="application/pdf",
+ created=date(2024, 1, 15),
+ )
+
+ response = self.client.get(
+ "/api/documents/?fields=id",
+ headers={"Accept": "application/json; version=8"},
+ format="json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ results = response.data["results"]
+ self.assertIn("id", results[0])
+ self.assertNotIn("created", results[0])
+
+ response = self.client.get(
+ "/api/documents/?fields=id,created",
+ headers={"Accept": "application/json; version=8"},
+ format="json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ results = response.data["results"]
+ self.assertIn("id", results[0])
+ self.assertIn("created", results[0])
+ self.assertRegex(results[0]["created"], r"^2024-01-15T00:00:00.*$")
+
def test_document_legacy_created_format(self):
"""
GIVEN:
@@ -912,6 +941,23 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
results = response.data["results"]
self.assertEqual(len(results), 0)
+ def test_documents_title_content_filter_strips_boundary_whitespace(self):
+ doc = Document.objects.create(
+ title="Testwort",
+ content="",
+ checksum="A",
+ mime_type="application/pdf",
+ )
+
+ response = self.client.get(
+ "/api/documents/",
+ {"title_content": " Testwort "},
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ results = response.data["results"]
+ self.assertEqual(len(results), 1)
+ self.assertEqual(results[0]["id"], doc.id)
+
def test_document_permissions_filters(self):
"""
GIVEN:
@@ -2250,6 +2296,23 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertListEqual(response.data, ["test", "test2"])
+ def test_get_log_with_limit(self):
+ log_data = "test1\ntest2\ntest3\n"
+ with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f:
+ f.write(log_data)
+ response = self.client.get("/api/logs/paperless/", {"limit": 2})
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertListEqual(response.data, ["test2", "test3"])
+
+ def test_get_log_with_invalid_limit(self):
+ log_data = "test1\ntest2\n"
+ with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f:
+ f.write(log_data)
+ response = self.client.get("/api/logs/paperless/", {"limit": "abc"})
+ self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
+ response = self.client.get("/api/logs/paperless/", {"limit": -5})
+ self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
+
def test_invalid_regex_other_algorithm(self):
for endpoint in ["correspondents", "tags", "document_types"]:
response = self.client.post(
diff --git a/src/documents/tests/test_api_email.py b/src/documents/tests/test_api_email.py
index 0f9bd9695..884553dba 100644
--- a/src/documents/tests/test_api_email.py
+++ b/src/documents/tests/test_api_email.py
@@ -329,6 +329,34 @@ class TestEmail(DirectoriesMixin, SampleDirMixin, APITestCase):
)
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
+ def test_email_only_requires_view_permission(self):
+ """
+ GIVEN:
+ - User having only view documents permission
+ WHEN:
+ - API request is made to bulk email documents
+ THEN:
+ - Request succeeds
+ """
+ user1 = User.objects.create_user(username="test1")
+ user1.user_permissions.add(*Permission.objects.filter(codename="view_document"))
+
+ self.client.force_authenticate(user1)
+
+ response = self.client.post(
+ self.ENDPOINT,
+ json.dumps(
+ {
+ "documents": [self.doc1.pk],
+ "addresses": "test@example.com",
+ "subject": "Test",
+ "message": "Test message",
+ },
+ ),
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+
@override_settings(
EMAIL_ENABLED=True,
EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend",
diff --git a/src/documents/tests/test_api_objects.py b/src/documents/tests/test_api_objects.py
index bba9031db..014dd3c2a 100644
--- a/src/documents/tests/test_api_objects.py
+++ b/src/documents/tests/test_api_objects.py
@@ -4,6 +4,7 @@ from unittest import mock
from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
+from django.test import override_settings
from rest_framework import status
from rest_framework.test import APITestCase
@@ -334,6 +335,45 @@ class TestApiStoragePaths(DirectoriesMixin, APITestCase):
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(response.data, "path/Something")
+ def test_test_storage_path_respects_none_placeholder_setting(self):
+ """
+ GIVEN:
+ - A storage path template referencing an empty field
+ WHEN:
+ - Testing the template before and after enabling remove-none
+ THEN:
+ - The preview shows "none" by default and drops the placeholder when configured
+ """
+ document = Document.objects.create(
+ mime_type="application/pdf",
+ storage_path=self.sp1,
+ title="Something",
+ checksum="123",
+ )
+ payload = json.dumps(
+ {
+ "document": document.id,
+ "path": "folder/{{ correspondent }}/{{ title }}",
+ },
+ )
+
+ response = self.client.post(
+ f"{self.ENDPOINT}test/",
+ payload,
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data, "folder/none/Something")
+
+ with override_settings(FILENAME_FORMAT_REMOVE_NONE=True):
+ response = self.client.post(
+ f"{self.ENDPOINT}test/",
+ payload,
+ content_type="application/json",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(response.data, "folder/Something")
+
class TestBulkEditObjects(APITestCase):
# See test_api_permissions.py for bulk tests on permissions
diff --git a/src/documents/tests/test_api_permissions.py b/src/documents/tests/test_api_permissions.py
index 8ffce1f95..bc81dabe9 100644
--- a/src/documents/tests/test_api_permissions.py
+++ b/src/documents/tests/test_api_permissions.py
@@ -648,7 +648,7 @@ class TestApiUser(DirectoriesMixin, APITestCase):
user1 = {
"username": "testuser",
- "password": "test",
+ "password": "areallysupersecretpassword235",
"first_name": "Test",
"last_name": "User",
}
@@ -730,7 +730,7 @@ class TestApiUser(DirectoriesMixin, APITestCase):
f"{self.ENDPOINT}{user1.pk}/",
data={
"first_name": "Updated Name 2",
- "password": "123xyz",
+ "password": "newreallystrongpassword456",
},
)
diff --git a/src/documents/tests/test_api_profile.py b/src/documents/tests/test_api_profile.py
index 8475459a2..2eedf3297 100644
--- a/src/documents/tests/test_api_profile.py
+++ b/src/documents/tests/test_api_profile.py
@@ -192,6 +192,65 @@ class TestApiProfile(DirectoriesMixin, APITestCase):
self.assertEqual(user.first_name, user_data["first_name"])
self.assertEqual(user.last_name, user_data["last_name"])
+ def test_update_profile_invalid_password_returns_field_error(self):
+ """
+ GIVEN:
+ - Configured user
+ WHEN:
+ - API call is made to update profile with weak password
+ THEN:
+ - Profile update fails with password field error
+ """
+
+ user_data = {
+ "email": "new@email.com",
+ "password": "short", # shorter than default validator threshold
+ "first_name": "new first name",
+ "last_name": "new last name",
+ }
+
+ response = self.client.patch(self.ENDPOINT, user_data)
+
+ self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
+ self.assertIn("password", response.data)
+ self.assertIsInstance(response.data["password"], list)
+ self.assertTrue(
+ any(
+ "too short" in message.lower() for message in response.data["password"]
+ ),
+ )
+
+ def test_update_profile_placeholder_password_skips_validation(self):
+ """
+ GIVEN:
+ - Configured user with existing password
+ WHEN:
+ - API call is made with the obfuscated placeholder password value
+ THEN:
+ - Profile is updated without changing the password or running validators
+ """
+
+ original_password = "orig-pass-12345"
+ self.user.set_password(original_password)
+ self.user.save()
+
+ user_data = {
+ "email": "new@email.com",
+ "password": "*" * 12, # matches obfuscated value from serializer
+ "first_name": "new first name",
+ "last_name": "new last name",
+ }
+
+ response = self.client.patch(self.ENDPOINT, user_data)
+
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+
+ user = User.objects.get(username=self.user.username)
+ self.assertTrue(user.check_password(original_password))
+ self.assertEqual(user.email, user_data["email"])
+ self.assertEqual(user.first_name, user_data["first_name"])
+ self.assertEqual(user.last_name, user_data["last_name"])
+
def test_update_auth_token(self):
"""
GIVEN:
diff --git a/src/documents/tests/test_api_remote_version.py b/src/documents/tests/test_api_remote_version.py
index 721d29424..9ade7d2c3 100644
--- a/src/documents/tests/test_api_remote_version.py
+++ b/src/documents/tests/test_api_remote_version.py
@@ -1,3 +1,4 @@
+from django.core.cache import cache
from pytest_httpx import HTTPXMock
from rest_framework import status
from rest_framework.test import APIClient
@@ -8,6 +9,9 @@ from paperless import version
class TestApiRemoteVersion:
ENDPOINT = "/api/remote_version/"
+ def setup_method(self):
+ cache.clear()
+
def test_remote_version_enabled_no_update_prefix(
self,
rest_api_client: APIClient,
diff --git a/src/documents/tests/test_api_search.py b/src/documents/tests/test_api_search.py
index 8f316c145..5a2fc9b52 100644
--- a/src/documents/tests/test_api_search.py
+++ b/src/documents/tests/test_api_search.py
@@ -89,6 +89,65 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase):
self.assertEqual(len(results), 0)
self.assertCountEqual(response.data["all"], [])
+ def test_search_custom_field_ordering(self):
+ custom_field = CustomField.objects.create(
+ name="Sortable field",
+ data_type=CustomField.FieldDataType.INT,
+ )
+ d1 = Document.objects.create(
+ title="first",
+ content="match",
+ checksum="A1",
+ )
+ d2 = Document.objects.create(
+ title="second",
+ content="match",
+ checksum="B2",
+ )
+ d3 = Document.objects.create(
+ title="third",
+ content="match",
+ checksum="C3",
+ )
+ CustomFieldInstance.objects.create(
+ document=d1,
+ field=custom_field,
+ value_int=30,
+ )
+ CustomFieldInstance.objects.create(
+ document=d2,
+ field=custom_field,
+ value_int=10,
+ )
+ CustomFieldInstance.objects.create(
+ document=d3,
+ field=custom_field,
+ value_int=20,
+ )
+
+ with AsyncWriter(index.open_index()) as writer:
+ index.update_document(writer, d1)
+ index.update_document(writer, d2)
+ index.update_document(writer, d3)
+
+ response = self.client.get(
+ f"/api/documents/?query=match&ordering=custom_field_{custom_field.pk}",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(
+ [doc["id"] for doc in response.data["results"]],
+ [d2.id, d3.id, d1.id],
+ )
+
+ response = self.client.get(
+ f"/api/documents/?query=match&ordering=-custom_field_{custom_field.pk}",
+ )
+ self.assertEqual(response.status_code, status.HTTP_200_OK)
+ self.assertEqual(
+ [doc["id"] for doc in response.data["results"]],
+ [d1.id, d3.id, d2.id],
+ )
+
def test_search_multi_page(self):
with AsyncWriter(index.open_index()) as writer:
for i in range(55):
diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py
index 62ca52d71..a1fd3d674 100644
--- a/src/documents/tests/test_file_handling.py
+++ b/src/documents/tests/test_file_handling.py
@@ -530,6 +530,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
@override_settings(
FILENAME_FORMAT="{{title}}_{{custom_fields|get_cf_value('test')}}",
+ CELERY_TASK_ALWAYS_EAGER=True,
)
@mock.patch("documents.signals.handlers.update_filename_and_move_files")
def test_select_cf_updated(self, m):
@@ -579,7 +580,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
}
cf.save()
self.assertEqual(generate_filename(doc), Path("document_aubergine.pdf"))
- # handler should have been called
+ # handler should have been called once via the async task
self.assertEqual(m.call_count, 1)
@@ -1078,6 +1079,47 @@ class TestFilenameGeneration(DirectoriesMixin, TestCase):
Path("SomeImportantNone/2020-07-25.pdf"),
)
+ @override_settings(
+ FILENAME_FORMAT=(
+ "{% if correspondent == 'none' %}none/{% endif %}"
+ "{% if correspondent == '-none-' %}dash/{% endif %}"
+ "{% if not correspondent %}false/{% endif %}"
+ "{% if correspondent != 'none' %}notnoneyes/{% else %}notnoneno/{% endif %}"
+ "{{ correspondent or 'missing' }}/{{ title }}"
+ ),
+ )
+ def test_placeholder_matches_none_variants_and_false(self):
+ """
+ GIVEN:
+ - Templates that compare against 'none', '-none-' and rely on truthiness
+ WHEN:
+ - A document has or lacks a correspondent
+ THEN:
+ - Empty placeholders behave like both strings and evaluate False
+ """
+ doc_without_correspondent = Document.objects.create(
+ title="does not matter",
+ mime_type="application/pdf",
+ checksum="abc",
+ )
+ doc_with_correspondent = Document.objects.create(
+ title="does not matter",
+ mime_type="application/pdf",
+ checksum="def",
+ correspondent=Correspondent.objects.create(name="Acme"),
+ )
+
+ self.assertEqual(
+ generate_filename(doc_without_correspondent),
+ Path(
+ "none/dash/false/notnoneno/missing/does not matter.pdf",
+ ),
+ )
+ self.assertEqual(
+ generate_filename(doc_with_correspondent),
+ Path("notnoneyes/Acme/does not matter.pdf"),
+ )
+
@override_settings(
FILENAME_FORMAT="{created_year_short}/{created_month_name_short}/{created_month_name}/{title}",
)
diff --git a/src/documents/tests/test_index.py b/src/documents/tests/test_index.py
index 2a41542e9..f216feedb 100644
--- a/src/documents/tests/test_index.py
+++ b/src/documents/tests/test_index.py
@@ -2,6 +2,7 @@ from datetime import datetime
from unittest import mock
from django.contrib.auth.models import User
+from django.test import SimpleTestCase
from django.test import TestCase
from django.test import override_settings
from django.utils.timezone import get_current_timezone
@@ -127,3 +128,126 @@ class TestAutoComplete(DirectoriesMixin, TestCase):
response = self.client.get("/api/documents/?query=added:yesterday")
results = response.json()["results"]
self.assertEqual(len(results), 0)
+
+
+@override_settings(TIME_ZONE="UTC")
+class TestRewriteNaturalDateKeywords(SimpleTestCase):
+ """
+ Unit tests for rewrite_natural_date_keywords function.
+ """
+
+ def _rewrite_with_now(self, query: str, now_dt: datetime) -> str:
+ with mock.patch("documents.index.now", return_value=now_dt):
+ return index.rewrite_natural_date_keywords(query)
+
+ def _assert_rewrite_contains(
+ self,
+ query: str,
+ now_dt: datetime,
+ *expected_fragments: str,
+ ) -> str:
+ result = self._rewrite_with_now(query, now_dt)
+ for fragment in expected_fragments:
+ self.assertIn(fragment, result)
+ return result
+
+ def test_range_keywords(self):
+ """
+ Test various different range keywords
+ """
+ cases = [
+ (
+ "added:today",
+ datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc),
+ ("added:[20250720", "TO 20250720"),
+ ),
+ (
+ "added:yesterday",
+ datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc),
+ ("added:[20250719", "TO 20250719"),
+ ),
+ (
+ "added:this month",
+ datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20250701", "TO 20250731"),
+ ),
+ (
+ "added:previous month",
+ datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20250601", "TO 20250630"),
+ ),
+ (
+ "added:this year",
+ datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20250101", "TO 20250715"),
+ ),
+ (
+ "added:previous year",
+ datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20240101", "TO 20241231"),
+ ),
+ # Previous quarter from July 15, 2025 is April-June.
+ (
+ "added:previous quarter",
+ datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20250401", "TO 20250630"),
+ ),
+ # July 20, 2025 is a Sunday (weekday 6) so previous week is July 7-13.
+ (
+ "added:previous week",
+ datetime(2025, 7, 20, 12, 0, 0, tzinfo=timezone.utc),
+ ("added:[20250707", "TO 20250713"),
+ ),
+ ]
+
+ for query, now_dt, fragments in cases:
+ with self.subTest(query=query):
+ self._assert_rewrite_contains(query, now_dt, *fragments)
+
+ def test_additional_fields(self):
+ fixed_now = datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc)
+ # created
+ self._assert_rewrite_contains("created:today", fixed_now, "created:[20250720")
+ # modified
+ self._assert_rewrite_contains("modified:today", fixed_now, "modified:[20250720")
+
+ def test_basic_syntax_variants(self):
+ """
+ Test that quoting, casing, and multi-clause queries are parsed.
+ """
+ fixed_now = datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc)
+
+ # quoted keywords
+ result1 = self._rewrite_with_now('added:"today"', fixed_now)
+ result2 = self._rewrite_with_now("added:'today'", fixed_now)
+ self.assertIn("added:[20250720", result1)
+ self.assertIn("added:[20250720", result2)
+
+ # case insensitivity
+ for query in ("added:TODAY", "added:Today", "added:ToDaY"):
+ with self.subTest(case_variant=query):
+ self._assert_rewrite_contains(query, fixed_now, "added:[20250720")
+
+ # multiple clauses
+ result = self._rewrite_with_now("added:today created:yesterday", fixed_now)
+ self.assertIn("added:[20250720", result)
+ self.assertIn("created:[20250719", result)
+
+ def test_no_match(self):
+ """
+ Test that queries without keywords are unchanged.
+ """
+ query = "title:test content:example"
+ result = index.rewrite_natural_date_keywords(query)
+ self.assertEqual(query, result)
+
+ @override_settings(TIME_ZONE="Pacific/Auckland")
+ def test_timezone_awareness(self):
+ """
+ Test timezone conversion.
+ """
+ # July 20, 2025 1:00 AM NZST = July 19, 2025 13:00 UTC
+ fixed_now = datetime(2025, 7, 20, 1, 0, 0, tzinfo=get_current_timezone())
+ result = self._rewrite_with_now("added:today", fixed_now)
+ # Should convert to UTC properly
+ self.assertIn("added:[20250719", result)
diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py
index a67e5e8c5..b01b8d47e 100644
--- a/src/documents/tests/test_management_exporter.py
+++ b/src/documents/tests/test_management_exporter.py
@@ -571,7 +571,7 @@ class TestExportImport(
with self.assertRaises(CommandError) as e:
call_command(*args)
- self.assertEqual("That path isn't a directory", str(e))
+ self.assertEqual("That path doesn't exist", str(e.exception))
def test_export_target_exists_but_is_file(self):
"""
@@ -589,7 +589,7 @@ class TestExportImport(
with self.assertRaises(CommandError) as e:
call_command(*args)
- self.assertEqual("That path isn't a directory", str(e))
+ self.assertEqual("That path isn't a directory", str(e.exception))
def test_export_target_not_writable(self):
"""
@@ -608,7 +608,10 @@ class TestExportImport(
with self.assertRaises(CommandError) as e:
call_command(*args)
- self.assertEqual("That path doesn't appear to be writable", str(e))
+ self.assertEqual(
+ "That path doesn't appear to be writable",
+ str(e.exception),
+ )
def test_no_archive(self):
"""
diff --git a/src/documents/tests/test_management_fuzzy.py b/src/documents/tests/test_management_fuzzy.py
index 453a86082..2a4f28025 100644
--- a/src/documents/tests/test_management_fuzzy.py
+++ b/src/documents/tests/test_management_fuzzy.py
@@ -34,7 +34,7 @@ class TestFuzzyMatchCommand(TestCase):
"""
with self.assertRaises(CommandError) as e:
self.call_command("--ratio", "-1")
- self.assertIn("The ratio must be between 0 and 100", str(e))
+ self.assertIn("The ratio must be between 0 and 100", str(e.exception))
def test_invalid_ratio_upper_limit(self):
"""
@@ -47,7 +47,7 @@ class TestFuzzyMatchCommand(TestCase):
"""
with self.assertRaises(CommandError) as e:
self.call_command("--ratio", "101")
- self.assertIn("The ratio must be between 0 and 100", str(e))
+ self.assertIn("The ratio must be between 0 and 100", str(e.exception))
def test_invalid_process_count(self):
"""
@@ -60,7 +60,7 @@ class TestFuzzyMatchCommand(TestCase):
"""
with self.assertRaises(CommandError) as e:
self.call_command("--processes", "0")
- self.assertIn("There must be at least 1 process", str(e))
+ self.assertIn("There must be at least 1 process", str(e.exception))
def test_no_matches(self):
"""
diff --git a/src/documents/tests/test_management_importer.py b/src/documents/tests/test_management_importer.py
index e700ecdc9..004f5ac5f 100644
--- a/src/documents/tests/test_management_importer.py
+++ b/src/documents/tests/test_management_importer.py
@@ -40,10 +40,10 @@ class TestCommandImport(
"--no-progress-bar",
str(self.dirs.scratch_dir),
)
- self.assertIn(
- "That directory doesn't appear to contain a manifest.json file.",
- str(e),
- )
+ self.assertIn(
+ "That directory doesn't appear to contain a manifest.json file.",
+ str(e.exception),
+ )
def test_check_manifest_malformed(self):
"""
@@ -66,10 +66,10 @@ class TestCommandImport(
"--no-progress-bar",
str(self.dirs.scratch_dir),
)
- self.assertIn(
- "The manifest file contains a record which does not refer to an actual document file.",
- str(e),
- )
+ self.assertIn(
+ "The manifest file contains a record which does not refer to an actual document file.",
+ str(e.exception),
+ )
def test_check_manifest_file_not_found(self):
"""
@@ -95,7 +95,7 @@ class TestCommandImport(
"--no-progress-bar",
str(self.dirs.scratch_dir),
)
- self.assertIn('The manifest file refers to "noexist.pdf"', str(e))
+ self.assertIn('The manifest file refers to "noexist.pdf"', str(e.exception))
def test_import_permission_error(self):
"""
@@ -129,14 +129,14 @@ class TestCommandImport(
cmd.data_only = False
with self.assertRaises(CommandError) as cm:
cmd.check_manifest_validity()
- self.assertInt("Failed to read from original file", str(cm.exception))
+ self.assertIn("Failed to read from original file", str(cm.exception))
original_path.chmod(0o444)
archive_path.chmod(0o222)
with self.assertRaises(CommandError) as cm:
cmd.check_manifest_validity()
- self.assertInt("Failed to read from archive file", str(cm.exception))
+ self.assertIn("Failed to read from archive file", str(cm.exception))
def test_import_source_not_existing(self):
"""
@@ -149,7 +149,7 @@ class TestCommandImport(
"""
with self.assertRaises(CommandError) as cm:
call_command("document_importer", Path("/tmp/notapath"))
- self.assertInt("That path doesn't exist", str(cm.exception))
+ self.assertIn("That path doesn't exist", str(cm.exception))
def test_import_source_not_readable(self):
"""
@@ -165,10 +165,10 @@ class TestCommandImport(
path.chmod(0o222)
with self.assertRaises(CommandError) as cm:
call_command("document_importer", path)
- self.assertInt(
- "That path doesn't appear to be readable",
- str(cm.exception),
- )
+ self.assertIn(
+ "That path doesn't appear to be readable",
+ str(cm.exception),
+ )
def test_import_source_does_not_exist(self):
"""
@@ -185,8 +185,7 @@ class TestCommandImport(
with self.assertRaises(CommandError) as e:
call_command("document_importer", "--no-progress-bar", str(path))
-
- self.assertIn("That path doesn't exist", str(e))
+ self.assertIn("That path doesn't exist", str(e.exception))
def test_import_files_exist(self):
"""
diff --git a/src/documents/tests/test_tag_hierarchy.py b/src/documents/tests/test_tag_hierarchy.py
index 708e3e534..e748225cd 100644
--- a/src/documents/tests/test_tag_hierarchy.py
+++ b/src/documents/tests/test_tag_hierarchy.py
@@ -229,3 +229,24 @@ class TestTagHierarchy(APITestCase):
assert resp_ok.status_code in (200, 202)
x.refresh_from_db()
assert x.parent_pk == c.id
+
+ def test_is_root_filter_returns_only_root_tags(self):
+ other_root = Tag.objects.create(name="Other parent")
+
+ response = self.client.get(
+ "/api/tags/",
+ {"is_root": "true"},
+ )
+
+ assert response.status_code == 200
+ assert response.data["count"] == 2
+
+ returned_ids = {row["id"] for row in response.data["results"]}
+ assert self.child.pk not in returned_ids
+ assert self.parent.pk in returned_ids
+ assert other_root.pk in returned_ids
+
+ parent_entry = next(
+ row for row in response.data["results"] if row["id"] == self.parent.pk
+ )
+ assert any(child["id"] == self.child.pk for child in parent_entry["children"])
diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py
index a6da01578..6438e4b10 100644
--- a/src/documents/tests/test_workflows.py
+++ b/src/documents/tests/test_workflows.py
@@ -8,8 +8,10 @@ from typing import TYPE_CHECKING
from unittest import mock
import pytest
+from django.conf import settings
from django.contrib.auth.models import Group
from django.contrib.auth.models import User
+from django.core import mail
from django.test import override_settings
from django.utils import timezone
from guardian.shortcuts import assign_perm
@@ -21,6 +23,8 @@ from pytest_httpx import HTTPXMock
from rest_framework.test import APIClient
from rest_framework.test import APITestCase
+from documents.file_handling import create_source_path_directory
+from documents.file_handling import generate_unique_filename
from documents.signals.handlers import run_workflows
from documents.signals.handlers import send_webhook
@@ -30,6 +34,7 @@ from pytest_django.fixtures import SettingsWrapper
from documents import tasks
from documents.data_models import ConsumableDocument
+from documents.data_models import DocumentMetadataOverrides
from documents.data_models import DocumentSource
from documents.matching import document_matches_workflow
from documents.matching import existing_document_matches_workflow
@@ -2788,6 +2793,80 @@ class TestWorkflows(
self.assertEqual(doc.tags.all().count(), 1)
self.assertIn(self.t2, doc.tags.all())
+ @override_settings(
+ PAPERLESS_EMAIL_HOST="localhost",
+ EMAIL_ENABLED=True,
+ PAPERLESS_URL="http://localhost:8000",
+ )
+ @mock.patch("django.core.mail.message.EmailMessage.send")
+ def test_workflow_assignment_then_email_includes_attachment(self, mock_email_send):
+ """
+ GIVEN:
+ - Workflow with assignment and email actions
+ - Email action configured to include the document
+ WHEN:
+ - Workflow is run on a newly created document
+ THEN:
+ - Email action sends the document as an attachment
+ """
+
+ storage_path = StoragePath.objects.create(
+ name="sp2",
+ path="workflow/{{ document.pk }}",
+ )
+ trigger = WorkflowTrigger.objects.create(
+ type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION,
+ )
+ assignment_action = WorkflowAction.objects.create(
+ type=WorkflowAction.WorkflowActionType.ASSIGNMENT,
+ assign_storage_path=storage_path,
+ assign_owner=self.user2,
+ )
+ assignment_action.assign_tags.add(self.t1)
+
+ email_action_config = WorkflowActionEmail.objects.create(
+ subject="Doc ready {doc_title}",
+ body="Document URL: {doc_url}",
+ to="owner@example.com",
+ include_document=True,
+ )
+ email_action = WorkflowAction.objects.create(
+ type=WorkflowAction.WorkflowActionType.EMAIL,
+ email=email_action_config,
+ )
+
+ workflow = Workflow.objects.create(name="Assignment then email", order=0)
+ workflow.triggers.add(trigger)
+ workflow.actions.set([assignment_action, email_action])
+
+ temp_working_copy = shutil.copy(
+ self.SAMPLE_DIR / "simple.pdf",
+ self.dirs.scratch_dir / "working-copy.pdf",
+ )
+
+ Document.objects.create(
+ title="workflow doc",
+ correspondent=self.c,
+ checksum="wf-assignment-email",
+ mime_type="application/pdf",
+ )
+
+ consumable_document = ConsumableDocument(
+ source=DocumentSource.ConsumeFolder,
+ original_file=temp_working_copy,
+ )
+
+ mock_email_send.return_value = 1
+
+ with self.assertNoLogs("paperless.handlers", level="ERROR"):
+ run_workflows(
+ WorkflowTrigger.WorkflowTriggerType.CONSUMPTION,
+ consumable_document,
+ overrides=DocumentMetadataOverrides(),
+ )
+
+ mock_email_send.assert_called_once()
+
@override_settings(
PAPERLESS_EMAIL_HOST="localhost",
EMAIL_ENABLED=True,
@@ -2914,6 +2993,70 @@ class TestWorkflows(
mock_email_send.assert_called_once()
+ @override_settings(
+ PAPERLESS_EMAIL_HOST="localhost",
+ EMAIL_ENABLED=True,
+ PAPERLESS_URL="http://localhost:8000",
+ EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend",
+ )
+ def test_workflow_email_attachment_uses_storage_filename(self):
+ """
+ GIVEN:
+ - Document updated workflow with include document action
+ - Document stored with formatted storage-path filename
+ WHEN:
+ - Workflow sends an email
+ THEN:
+ - Attachment filename matches the stored filename
+ """
+
+ trigger = WorkflowTrigger.objects.create(
+ type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
+ )
+ email_action = WorkflowActionEmail.objects.create(
+ subject="Test Notification: {doc_title}",
+ body="Test message: {doc_url}",
+ to="me@example.com",
+ include_document=True,
+ )
+ action = WorkflowAction.objects.create(
+ type=WorkflowAction.WorkflowActionType.EMAIL,
+ email=email_action,
+ )
+ workflow = Workflow.objects.create(
+ name="Workflow attachment filename",
+ order=0,
+ )
+ workflow.triggers.add(trigger)
+ workflow.actions.add(action)
+ workflow.save()
+
+ storage_path = StoragePath.objects.create(
+ name="Fancy Path",
+ path="formatted/{{ document.pk }}/{{ title }}",
+ )
+ doc = Document.objects.create(
+ title="workflow doc",
+ correspondent=self.c,
+ checksum="workflow-email-attachment",
+ mime_type="application/pdf",
+ storage_path=storage_path,
+ original_filename="workflow-orig.pdf",
+ )
+
+ # eg what happens in update_filename_and_move_files
+ generated = generate_unique_filename(doc)
+ destination = (settings.ORIGINALS_DIR / generated).resolve()
+ create_source_path_directory(destination)
+ shutil.copy(self.SAMPLE_DIR / "simple.pdf", destination)
+ Document.objects.filter(pk=doc.pk).update(filename=generated.as_posix())
+
+ run_workflows(WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, doc)
+
+ self.assertEqual(len(mail.outbox), 1)
+ attachment_names = [att[0] for att in mail.outbox[0].attachments]
+ self.assertEqual(attachment_names, [Path(generated).name])
+
@override_settings(
EMAIL_ENABLED=False,
)
@@ -3069,6 +3212,8 @@ class TestWorkflows(
@override_settings(
PAPERLESS_URL="http://localhost:8000",
+ PAPERLESS_FORCE_SCRIPT_NAME="/paperless",
+ BASE_URL="/paperless/",
)
@mock.patch("documents.signals.handlers.send_webhook.delay")
def test_workflow_webhook_action_body(self, mock_post):
@@ -3120,7 +3265,7 @@ class TestWorkflows(
mock_post.assert_called_once_with(
url="http://paperless-ngx.com",
- data=f"Test message: http://localhost:8000/documents/{doc.id}/",
+ data=f"Test message: http://localhost:8000/paperless/documents/{doc.id}/",
headers={},
files=None,
as_json=False,
diff --git a/src/documents/views.py b/src/documents/views.py
index 696311a7a..ba265926c 100644
--- a/src/documents/views.py
+++ b/src/documents/views.py
@@ -6,6 +6,7 @@ import re
import tempfile
import zipfile
from collections import defaultdict
+from collections import deque
from datetime import datetime
from pathlib import Path
from time import mktime
@@ -22,6 +23,7 @@ from django.conf import settings
from django.contrib.auth.models import Group
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
+from django.core.cache import cache
from django.db import connections
from django.db.migrations.loader import MigrationLoader
from django.db.migrations.recorder import MigrationRecorder
@@ -69,6 +71,7 @@ from rest_framework import parsers
from rest_framework import serializers
from rest_framework.decorators import action
from rest_framework.exceptions import NotFound
+from rest_framework.exceptions import ValidationError
from rest_framework.filters import OrderingFilter
from rest_framework.filters import SearchFilter
from rest_framework.generics import GenericAPIView
@@ -105,6 +108,7 @@ from documents.conditionals import thumbnail_last_modified
from documents.data_models import ConsumableDocument
from documents.data_models import DocumentMetadataOverrides
from documents.data_models import DocumentSource
+from documents.file_handling import format_filename
from documents.filters import CorrespondentFilterSet
from documents.filters import CustomFieldFilterSet
from documents.filters import DocumentFilterSet
@@ -116,6 +120,7 @@ from documents.filters import PaperlessTaskFilterSet
from documents.filters import ShareLinkFilterSet
from documents.filters import StoragePathFilterSet
from documents.filters import TagFilterSet
+from documents.mail import EmailAttachment
from documents.mail import send_email
from documents.matching import match_correspondents
from documents.matching import match_document_types
@@ -141,6 +146,7 @@ from documents.permissions import AcknowledgeTasksPermissions
from documents.permissions import PaperlessAdminPermissions
from documents.permissions import PaperlessNotePermissions
from documents.permissions import PaperlessObjectPermissions
+from documents.permissions import ViewDocumentsPermissions
from documents.permissions import get_document_count_filter_for_user
from documents.permissions import get_objects_for_user_owner_aware
from documents.permissions import has_perms_owner_aware
@@ -179,7 +185,6 @@ from documents.tasks import index_optimize
from documents.tasks import sanity_check
from documents.tasks import train_classifier
from documents.tasks import update_document_parent_tags
-from documents.templating.filepath import validate_filepath_template_and_render
from documents.utils import get_boolean
from paperless import version
from paperless.celery import app as celery_app
@@ -1171,7 +1176,12 @@ class DocumentViewSet(
return Response(sorted(entries, key=lambda x: x["timestamp"], reverse=True))
- @action(methods=["post"], detail=True, url_path="email")
+ @action(
+ methods=["post"],
+ detail=True,
+ url_path="email",
+ permission_classes=[IsAuthenticated, ViewDocumentsPermissions],
+ )
# TODO: deprecated as of 2.19, remove in future release
def email_document(self, request, pk=None):
request_data = request.data.copy()
@@ -1183,6 +1193,7 @@ class DocumentViewSet(
detail=False,
url_path="email",
serializer_class=EmailSerializer,
+ permission_classes=[IsAuthenticated, ViewDocumentsPermissions],
)
def email_documents(self, request, data=None):
serializer = EmailSerializer(data=data or request.data)
@@ -1206,12 +1217,28 @@ class DocumentViewSet(
return HttpResponseForbidden("Insufficient permissions")
try:
+ attachments: list[EmailAttachment] = []
+ for doc in documents:
+ attachment_path = (
+ doc.archive_path
+ if use_archive_version and doc.has_archive_version
+ else doc.source_path
+ )
+ attachments.append(
+ EmailAttachment(
+ path=attachment_path,
+ mime_type=doc.mime_type,
+ friendly_name=doc.get_public_filename(
+ archive=use_archive_version and doc.has_archive_version,
+ ),
+ ),
+ )
+
send_email(
subject=subject,
body=message,
to=addresses,
- attachments=documents,
- use_archive=use_archive_version,
+ attachments=attachments,
)
logger.debug(
@@ -1355,6 +1382,13 @@ class UnifiedSearchViewSet(DocumentViewSet):
type=OpenApiTypes.STR,
location=OpenApiParameter.PATH,
),
+ OpenApiParameter(
+ name="limit",
+ type=OpenApiTypes.INT,
+ location=OpenApiParameter.QUERY,
+ description="Return only the last N entries from the log file",
+ required=False,
+ ),
],
responses={
(200, "application/json"): serializers.ListSerializer(
@@ -1386,8 +1420,22 @@ class LogViewSet(ViewSet):
if not log_file.is_file():
raise Http404
+ limit_param = request.query_params.get("limit")
+ if limit_param is not None:
+ try:
+ limit = int(limit_param)
+ except (TypeError, ValueError):
+ raise ValidationError({"limit": "Must be a positive integer"})
+ if limit < 1:
+ raise ValidationError({"limit": "Must be a positive integer"})
+ else:
+ limit = None
+
with log_file.open() as f:
- lines = [line.rstrip() for line in f.readlines()]
+ if limit is None:
+ lines = [line.rstrip() for line in f.readlines()]
+ else:
+ lines = [line.rstrip() for line in deque(f, maxlen=limit)]
return Response(lines)
@@ -1832,7 +1880,7 @@ class SearchAutoCompleteView(GenericAPIView):
user = self.request.user if hasattr(self.request, "user") else None
if "term" in request.query_params:
- term = request.query_params["term"]
+ term = request.query_params["term"].strip()
else:
return HttpResponseBadRequest("Term required")
@@ -2305,7 +2353,7 @@ class StoragePathViewSet(ModelViewSet, PermissionsAwareDocumentCountMixin):
document = serializer.validated_data.get("document")
path = serializer.validated_data.get("path")
- result = validate_filepath_template_and_render(path, document)
+ result = format_filename(document, path)
return Response(result)
@@ -2404,31 +2452,34 @@ class UiSettingsView(GenericAPIView):
),
)
class RemoteVersionView(GenericAPIView):
+ cache_key = "remote_version_view_latest_release"
+
def get(self, request, format=None):
- remote_version = "0.0.0"
- is_greater_than_current = False
current_version = packaging_version.parse(version.__full_version_str__)
- try:
- resp = httpx.get(
- "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest",
- headers={"Accept": "application/json"},
- )
- resp.raise_for_status()
+ remote_version = cache.get(self.cache_key)
+ if remote_version is None:
try:
+ resp = httpx.get(
+ "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest",
+ headers={"Accept": "application/json"},
+ )
+ resp.raise_for_status()
data = resp.json()
remote_version = data["tag_name"]
# Some early tags used ngx-x.y.z
remote_version = remote_version.removeprefix("ngx-")
except ValueError as e:
logger.debug(f"An error occurred parsing remote version json: {e}")
- except httpx.HTTPError as e:
- logger.debug(f"An error occurred checking for available updates: {e}")
+ except httpx.HTTPError as e:
+ logger.debug(f"An error occurred checking for available updates: {e}")
+
+ if remote_version:
+ cache.set(self.cache_key, remote_version, 60 * 15)
+ else:
+ remote_version = "0.0.0"
is_greater_than_current = (
- packaging_version.parse(
- remote_version,
- )
- > current_version
+ packaging_version.parse(remote_version) > current_version
)
return Response(
diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po
index af25f1687..81d1857f2 100644
--- a/src/locale/af_ZA/LC_MESSAGES/django.po
+++ b/src/locale/af_ZA/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Language: af_ZA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Waarde moet geldige JSON wees."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ongeldige logiese uitdrukking {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po
index 784096680..cdcc47657 100644
--- a/src/locale/ar_AR/LC_MESSAGES/django.po
+++ b/src/locale/ar_AR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-21 23:54\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Language: ar_SA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "المستندات"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "يجب أن تكون القيمة JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
-msgstr ""
+msgstr "قائمة عبارة خاطئة."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} حقل مخصص غير صالح."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "لم يتم العثور على حقل مخصص"
@@ -1062,7 +1062,7 @@ msgstr "تعيين هذا المالك"
#: documents/models.py:1353
msgid "grant view permissions to these users"
-msgstr "منح أذونات العرض إلى هؤلاء المستخدمين"
+msgstr "منح صلاحيات العرض إلى هؤلاء المستخدمين"
#: documents/models.py:1360
msgid "grant view permissions to these groups"
@@ -1130,11 +1130,11 @@ msgstr "إزالة جميع المالكين"
#: documents/models.py:1458
msgid "remove view permissions for these users"
-msgstr "سحب أذونات العرض من هؤلاء المستخدمين"
+msgstr "سحب صلاحيات العرض من هؤلاء المستخدمين"
#: documents/models.py:1465
msgid "remove view permissions for these groups"
-msgstr "سحب أذونات العرض من هذه المجموعات"
+msgstr "سحب صلاحيات العرض من هذه المجموعات"
#: documents/models.py:1472
msgid "remove change permissions for these users"
diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po
index 8325d01c5..7d6930b1f 100644
--- a/src/locale/be_BY/LC_MESSAGES/django.po
+++ b/src/locale/be_BY/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Belarusian\n"
"Language: be_BY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Дакументы"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po
index 6d061816f..f05719365 100644
--- a/src/locale/bg_BG/LC_MESSAGES/django.po
+++ b/src/locale/bg_BG/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Language: bg_BG\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Стойността трябва да е валидна JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Невалидна заявка на персонализираното полето"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Списък с невалиден израз. Не може да е празно."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Невалиден логически оператор {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Надвишен е максимален брой за заявки."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не е валидно персонализирано поле."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддържа заявка expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Надвишена е максималната дълбочина на вмъкване."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Персонализирано поле не е намерено"
diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po
index a884fcf6f..742257b8b 100644
--- a/src/locale/ca_ES/LC_MESSAGES/django.po
+++ b/src/locale/ca_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-24 12:15\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents "
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Valor ha de ser un JSON valid."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressió de camp de consulta invàlid"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Expressió de llista invàlida. No ha d'estar buida."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Invàlid operand lògic {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Condicions de consulta excedits."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} no és un camp personalitzat vàlid."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no suporta expressió de consulta {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Màxima profunditat anidada excedida."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Camp personalitzat no trobat"
diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po
index bc7116050..f6aa7f408 100644
--- a/src/locale/cs_CZ/LC_MESSAGES/django.po
+++ b/src/locale/cs_CZ/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Language: cs_CZ\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Hodnota musí být platný JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz dotazu na vlastní pole"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný seznam výrazů. Nesmí být prázdný."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Překročen maximální počet podmínek dotazu."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} není platné vlastní pole."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz dotazu {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Překročena maximální hloubka větvení."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Vlastní pole nebylo nalezeno"
@@ -858,11 +858,11 @@ msgstr "má tyto štítky"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "má všechny tyto štítky"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "nemá tyto štítky"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "má tento typ dokumentu"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "nemá tyto typy dokumentů"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "má tohoto korespondenta"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "nemá tyto korespondenty"
#: documents/models.py:1117
msgid "has this storage path"
@@ -886,15 +886,15 @@ msgstr "má tuto cestu k úložišti"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "nemá tyto cesty k úložišti"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "filtrovat dotazem na vlastní pole"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "Dotaz na vlastní pole zakódovaný ve formátu JSON."
#: documents/models.py:1135
msgid "schedule offset days"
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index d6f9fc0f4..d2452f2d6 100644
--- a/src/locale/da_DK/LC_MESSAGES/django.po
+++ b/src/locale/da_DK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Language: da_DK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Værdien skal være gyldig JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ugyldigt tilpasset feltforespørgselsudtryk"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ugyldig udtryksliste. Må ikke være tom."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ugyldig logisk operatør {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maksimalt antal forespørgselsbetingelser overskredet."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} er ikke et gyldigt tilpasset felt."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} understøtter ikke forespørgsel expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maksimal indlejringsdybde overskredet."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Tilpasset felt ikke fundet"
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index 6841d256d..82a6946e7 100644
--- a/src/locale/de_DE/LC_MESSAGES/django.po
+++ b/src/locale/de_DE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-23 00:34\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-22 12:12\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ungültiger logischer Operator {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximale Anzahl an Abfragebedingungen überschritten."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ist kein gültiges benutzerdefiniertes Feld."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximale Verschachtelungstiefe überschritten."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Benutzerdefiniertes Feld nicht gefunden"
@@ -63,7 +63,7 @@ msgstr "Eigentümer"
#: documents/models.py:55 documents/models.py:983
msgid "None"
-msgstr "Keiner"
+msgstr "Keine"
#: documents/models.py:56 documents/models.py:984
msgid "Any word"
@@ -830,7 +830,7 @@ msgstr "Benutzerdefiniertes Feld"
#: documents/models.py:1009
msgid "Workflow Trigger Type"
-msgstr "Workflow-Auslösertyp"
+msgstr "Arbeitsablauf-Auslösertyp"
#: documents/models.py:1021
msgid "filter path"
@@ -862,7 +862,7 @@ msgstr "hat alle diese Tags"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "hat diese Tags nicht"
+msgstr "hat diese Tags nicht)"
#: documents/models.py:1087
msgid "has this document type"
@@ -890,11 +890,11 @@ msgstr "hat diese Speicherpfade nicht"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "Filtere nach benutzerdefiniertem Feld"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "JSON-kodierte benutzerdefinierter Feldabfrageausdruck."
+msgstr "JSON-kodierte Abfrage eines benutzerdefinierten Felds."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1166,11 +1166,11 @@ msgstr "Webhook"
#: documents/models.py:1518
msgid "workflow action"
-msgstr "Workflow-Aktion"
+msgstr "Arbeitsablauf-Aktion"
#: documents/models.py:1519
msgid "workflow actions"
-msgstr "Workflow-Aktionen"
+msgstr "Arbeitsablauf-Aktionen"
#: documents/models.py:1528 paperless_mail/models.py:145
msgid "order"
@@ -1225,7 +1225,7 @@ msgstr "Dateityp %(type)s nicht unterstützt"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr "Benutzerdefinierte Feld ID muss eine Ganzzahl sein: %(id)s"
+msgstr "Feld-ID eines benutzerdefinierten Felds muss eine Ganzzahl sein: %(id)s"
#: documents/serialisers.py:1856
#, python-format
diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po
index cc1577fda..3acad218d 100644
--- a/src/locale/el_GR/LC_MESSAGES/django.po
+++ b/src/locale/el_GR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Language: el_GR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Έγγραφα"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Μη έγκυρος λογικός τελεστής {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Το προσαρμοσμένο πεδίο δε βρέθηκε"
diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po
index 0f2d27f3f..bc2985431 100644
--- a/src/locale/en_US/LC_MESSAGES/django.po
+++ b/src/locale/en_US/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
"PO-Revision-Date: 2022-02-17 04:17\n"
"Last-Translator: \n"
"Language-Team: English\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr ""
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po
index d3f90ea91..7a1b970bb 100644
--- a/src/locale/es_ES/LC_MESSAGES/django.po
+++ b/src/locale/es_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "El valor debe ser JSON válido."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expresión de consulta de campo personalizado no válida"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expresiones no válida. No debe estar vacía."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Se ha superado el número máximo de condiciones de consulta."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{nombre!r} no es un campo personalizado válido."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no admite la consulta expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profundidad máxima de nidificación superada."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Campo personalizado no encontrado"
@@ -136,11 +136,11 @@ msgstr "etiquetas"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "No se puede establecer a sí mismo como padre."
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr ""
+msgstr "No se puede establecer el padre a un descendiente."
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -758,7 +758,7 @@ msgstr "Selecciona"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Texto largo"
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "tiene estas etiqueta(s)"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "tiene todas estas etiqueta(s)"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "no tiene estas etiqueta(s)"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "tiene este tipo de documento"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "no tiene estos tipos de documento (s)"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -882,19 +882,19 @@ msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr ""
+msgstr "tiene esta ruta de almacenamiento"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "no tiene esta(s) ruta(s) de almacenamiento"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "filtrar consulta de campo personalizado"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "Expresión de consulta de campo personalizado codificado en JSON."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1038,7 +1038,7 @@ msgstr "asignar título"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr ""
+msgstr "Asignar un título de documento, debe ser una plantilla de Jinja2, ver documentación."
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1225,20 +1225,20 @@ msgstr "Tipo de fichero %(type)s no suportado"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "El id del campo personalizado debe ser un entero: %(id)s"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "El campo personalizado con identificador %(id)s no existe"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "Los campos personalizados deben ser una lista de enteros o un identificador de mapeo de objetos a valores."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Algunos campos personalizados no existen o fueron especificados dos veces."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
@@ -1473,21 +1473,21 @@ msgstr "Como último paso, por favor complete el siguiente formulario:"
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr ""
+msgstr "No se puede analizar la URI {value}, falta el esquema"
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr ""
+msgstr "No se puede analizar la URI {value}, falta la ubicación de la red o la ruta"
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "El esquema URI '{parts.scheme}' no está permitido. Esquemas permitidos: {', '.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr ""
+msgstr "No se puede analizar la URI {value}"
#: paperless/apps.py:11
msgid "Paperless"
@@ -1731,7 +1731,7 @@ msgstr "Español"
#: paperless/settings.py:785
msgid "Persian"
-msgstr ""
+msgstr "Persa"
#: paperless/settings.py:786
msgid "Finnish"
@@ -1815,7 +1815,7 @@ msgstr "Ucraniano"
#: paperless/settings.py:806
msgid "Vietnamese"
-msgstr ""
+msgstr "Vietnamita"
#: paperless/settings.py:807
msgid "Chinese Simplified"
diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po
index 22542b5c2..08358db78 100644
--- a/src/locale/et_EE/LC_MESSAGES/django.po
+++ b/src/locale/et_EE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"Language: et_EE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumendid"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Väärtus peab olema lubatav JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Vigane kohandatud välja päringu avaldis"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Vigane avaldiste loend. Peab olema mittetühi."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Vigane loogikaoperaator {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Päringutingimuste suurim hulk on ületatud."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ei ole lubatud kohandatud väli."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ei toeta päringu avaldist {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Suurim pesastamis sügavus ületatud."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Kohandatud välja ei leitud"
diff --git a/src/locale/fa_IR/LC_MESSAGES/django.po b/src/locale/fa_IR/LC_MESSAGES/django.po
index 4605f5eec..00a02cebe 100644
--- a/src/locale/fa_IR/LC_MESSAGES/django.po
+++ b/src/locale/fa_IR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Language: fa_IR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "اسناد و مدارک"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "مقدار باید JSON معتبر باشد."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Invalid custom field query expression"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{نام! R} یک زمینه سفارشی معتبر نیست."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "زمینه سفارشی یافت نشد"
diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po
index e4f6ff07a..a90715bc6 100644
--- a/src/locale/fi_FI/LC_MESSAGES/django.po
+++ b/src/locale/fi_FI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Language: fi_FI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Asiakirjat"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Arvon on oltava kelvollista JSON:ia."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po
index d5094ec7d..e98fdc37a 100644
--- a/src/locale/fr_FR/LC_MESSAGES/django.po
+++ b/src/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "La valeur doit être un JSON valide."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
-msgstr "Expression de requête personnalisée invalide"
+msgstr "Requête de champ personnalisé invalide"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Liste d’expressions invalide. Doit être non vide."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Opérateur logique {op!r} invalide"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Nombre maximum de conditions de requête dépassé."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} n'est pas un champ personnalisé valide."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne supporte pas l'expression {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profondeur de récursion maximale dépassée."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Champ personnalisé non trouvé"
@@ -136,11 +136,11 @@ msgstr "étiquettes"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "Impossible de se définir comme parent."
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr ""
+msgstr "Impossible de défini un parent comme descendant."
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -862,7 +862,7 @@ msgstr "a toutes ces étiquettes"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "n'a pas ce(s) tag(s)"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "A ce type de document"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "n'a pas ce(s) type(s) de document"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "A ce correspondant"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "n'a pas ce(s) correspondant(s)"
#: documents/models.py:1117
msgid "has this storage path"
@@ -890,11 +890,11 @@ msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "filtrer la requête de champ personnalisé"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "Expression de champ personnalisé encodée en JSON."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1225,20 +1225,20 @@ msgstr "Type de fichier %(type)s non pris en charge"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "L'id du champ personnalisé doit être un entier : %(id)s"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "Le champ personnalisé avec l'id %(id)s n'existe pas"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "Les champs personnalisés doivent être une liste d'entiers ou un mappage d'identifiants à des valeurs."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Certains champs personnalisés n'existent pas ou ont été spécifiés deux fois."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po
index 7ffa79f34..709ed503e 100644
--- a/src/locale/he_IL/LC_MESSAGES/django.po
+++ b/src/locale/he_IL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Language: he_IL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "מסמכים"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "ערך מוכרך להיות JSON תקין."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "סימן פעולה לוגית לא חוקי {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "חריגה ממספר תנאי השאילתה המרבי."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} הוא לא שדה מותאם אישית חוקי."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "חריגה מעומק הקינון המרבי."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "שדה מותאם אישית לא נמצא"
diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po
index f8aed02a9..58659d5f9 100644
--- a/src/locale/hr_HR/LC_MESSAGES/django.po
+++ b/src/locale/hr_HR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"Language: hr_HR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po
index 65a7225d0..3f2cc38df 100644
--- a/src/locale/hu_HU/LC_MESSAGES/django.po
+++ b/src/locale/hu_HU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Language: hu_HU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentumok"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
-msgstr "Érvényes JSON érték szükséges"
+msgstr "Érvényes JSON érték szükséges."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Érvénytelen egyéni mező lekérdezési kifejezés"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Érvénytelen kifejezéslista. Nem lehet üres."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Érvénytelen logikai operátor {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximum lekérdezési feltételszám átlépve."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nem érvényes egyéni mező."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
-msgstr "{data_type} nem támogatja a(z) {expr!r} lekérdezési kifejezést."
+msgstr "A(z) {data_type} nem támogatja a {expr!r} kifejezés lekérdezést."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximum beágyazási mélység túllépve."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Az egyéni mező nem található"
@@ -136,11 +136,11 @@ msgstr "címkék"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "Nem állíthatja be magát szülőként."
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr ""
+msgstr "Nem lehet szülőt beállítani egy leszármazotthoz."
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -758,7 +758,7 @@ msgstr "Válassz"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Hosszú szöveg"
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "ezekkel a címkékkel rendelkezik"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "ezen címke(ék) mindegyikét tartalmazza"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "nem tartalmazza ezt a címkét vagy címéket"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "ez a dokumentumtípusa"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "nem rendelkezik dokumentumtípussal a"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,23 +878,23 @@ msgstr "ez a levelezőpartner"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "nincs ilyen levelezőpartner(ek).\""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr ""
+msgstr "rendelkezik ezzel a tárolási útvonallal"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "nem rendelkezik ezzel a tárolási útvonallal"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "egyéni mező a lekérdezés szűrésére"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "JSON-kódolású egyéni mező lekérdezési kifejezés."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1038,7 +1038,7 @@ msgstr "cím hozzárendelése"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr ""
+msgstr "Dokumentumcím hozzárendelése, amelynek Jinja2 sablonnak kell lennie, lásd a dokumentációt."
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1225,20 +1225,20 @@ msgstr "Fájltípus %(type)s nem támogatott"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "Az egyéni mező azonosítójának egész számnak kell lennie: %(id)s"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "A(z) %(id)s azonosítójú egyéni mező nem létezik"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "Az egyéni mezőknek egész számok listájának vagy azonosítókat értékekhez rendelő objektumnak kell lenniük."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Néhány egyéni mező nem létezik, vagy kétszer lett megadva."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po
index 5cc017072..02e83ae1f 100644
--- a/src/locale/id_ID/LC_MESSAGES/django.po
+++ b/src/locale/id_ID/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Language: id_ID\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Nilai harus berupa JSON yang valid."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ekspresi pencarian bidang khusus tidak valid"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operator logika {op!r} tidak valid"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Jumlah maksimal kondisi pencarian terlampaui."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} bukan bidang khusus yang valid."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} tidak mendukung ekspresi pencarian expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Kedalaman susunan maksimal terlampaui."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Bidang khusus tidak ditemukan"
diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po
index db3a2c6ab..5c5bce0ac 100644
--- a/src/locale/it_IT/LC_MESSAGES/django.po
+++ b/src/locale/it_IT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Language: it_IT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenti"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Il valore deve essere un JSON valido."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Campo personalizzato della query non valido"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Elenco delle espressioni non valido. Deve essere non vuoto."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operatore logico non valido {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Numero massimo delle condizioni della jQuery superato."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} non è un campo personalizzato valido."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} Non supporta la jQuery Expo {Expo!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Superata la profondità massima di nidificazione."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Campo personalizzato non trovato"
@@ -858,11 +858,11 @@ msgstr "ha questi tag(s)"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "ha tutte queste etichette"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "non ha queste etichette"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "ha questo tipo di documento"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "non ha questi tipi di documento"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "ha questo corrispondente"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "non ha questi corrispondenti"
#: documents/models.py:1117
msgid "has this storage path"
@@ -886,7 +886,7 @@ msgstr "ha questo percorso di archiviazione"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "non ha questo percorso di archiviazione"
#: documents/models.py:1128
msgid "filter custom field query"
@@ -898,7 +898,7 @@ msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
-msgstr ""
+msgstr "giorni di offset della schedulazione"
#: documents/models.py:1138
msgid "The number of days to offset the schedule trigger by."
@@ -998,19 +998,19 @@ msgstr "corpo webhook"
#: documents/models.py:1253
msgid "The body to send with the webhook URL if parameters not used."
-msgstr ""
+msgstr "Il corpo da inviare con l'URL del webhook se i parametri non vengono utilizzati."
#: documents/models.py:1257
msgid "webhook headers"
-msgstr ""
+msgstr "header Webhook"
#: documents/models.py:1260
msgid "The headers to send with the webhook URL."
-msgstr ""
+msgstr "Le intestazioni da inviare con l'URL del webhook."
#: documents/models.py:1265
msgid "include document in webhook"
-msgstr ""
+msgstr "includi documento nel webhook"
#: documents/models.py:1276
msgid "Assignment"
@@ -1038,7 +1038,7 @@ msgstr "assegna titolo"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr ""
+msgstr "Assegnare un titolo del documento, deve essere un modello Jinja2, vedere la documentazione."
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1178,7 +1178,7 @@ msgstr "priorità"
#: documents/models.py:1534
msgid "triggers"
-msgstr ""
+msgstr "trigger"
#: documents/models.py:1541
msgid "actions"
@@ -1202,11 +1202,11 @@ msgstr "data esecuzione"
#: documents/models.py:1579
msgid "workflow run"
-msgstr ""
+msgstr "esecuzione del workflow"
#: documents/models.py:1580
msgid "workflow runs"
-msgstr ""
+msgstr "esecuzione del workflow"
#: documents/serialisers.py:145
#, python-format
@@ -1225,20 +1225,20 @@ msgstr "Il tipo di file %(type)s non è supportato"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "L'id del campo personalizzato deve essere un intero: %(id)s"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "Il campo personalizzato con id %(id)s non esiste"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "I campi personalizzati devono essere un elenco di interi o un id di mappatura."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Alcuni campi personalizzati non esistono o sono stati specificati due volte."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
@@ -1482,7 +1482,7 @@ msgstr "Impossibile analizzare l'URI {value}, la posizione di rete o il percorso
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "Schema URI '{parts.scheme}' non è consentito. Schemi consentiti: {', '.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
@@ -1599,7 +1599,7 @@ msgstr "Imposta il valore di ripiego DPI dell'immagine"
#: paperless/models.py:131
msgid "Controls the unpaper cleaning"
-msgstr ""
+msgstr "Controlla la pulizia della carta"
#: paperless/models.py:138
msgid "Enables deskew"
@@ -1635,15 +1635,15 @@ msgstr "Logo applicazione"
#: paperless/models.py:197
msgid "Enables barcode scanning"
-msgstr ""
+msgstr "Abilita scansione codici a barre"
#: paperless/models.py:203
msgid "Enables barcode TIFF support"
-msgstr ""
+msgstr "Abilita il supporto TIFF del codice a barre"
#: paperless/models.py:209
msgid "Sets the barcode string"
-msgstr ""
+msgstr "Imposta la stringa del barcode"
#: paperless/models.py:217
msgid "Retains split pages"
@@ -1659,11 +1659,11 @@ msgstr "Imposta il prefisso del codice a barre ASN"
#: paperless/models.py:237
msgid "Sets the barcode upscale factor"
-msgstr ""
+msgstr "Imposta il fattore di ingrandimento del codice a barre"
#: paperless/models.py:244
msgid "Sets the barcode DPI"
-msgstr ""
+msgstr "Imposta il DPI codice a barre"
#: paperless/models.py:251
msgid "Sets the maximum pages for barcode"
@@ -1675,7 +1675,7 @@ msgstr "Abilita tag del codice a barre"
#: paperless/models.py:264
msgid "Sets the tag barcode mapping"
-msgstr ""
+msgstr "Imposta la mappatura dei codici a barre dei tag"
#: paperless/models.py:269
msgid "paperless application settings"
diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po
index def408d8a..585880f74 100644
--- a/src/locale/ja_JP/LC_MESSAGES/django.po
+++ b/src/locale/ja_JP/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Language: ja_JP\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "ドキュメント"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "値は有効なJSONである必要があります。"
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "無効なカスタムフィールドクエリ式"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "無効な式リストです。空であってはなりません。"
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "無効な論理演算子 {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "クエリ条件の最大数を超えました。"
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} は有効なカスタムフィールドではありません。"
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。"
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "最大ネストの深さを超えました。"
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "カスタムフィールドが見つかりません"
diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po
index e798b1e7d..953806d6f 100644
--- a/src/locale/ko_KR/LC_MESSAGES/django.po
+++ b/src/locale/ko_KR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-25 00:35\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Language: ko_KR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "문서"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "값은 유효한 JSON이어야 합니다."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "잘못된 사용자 정의 필드 쿼리 표현식"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "잘못된 논리 연산자 {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "쿼리 조건의 최대 개수를 초과했습니다."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "최대 중첩 깊이를 초과했습니다."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "사용자 지정 필드를 찾을 수 없음"
diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po
index 7fafd2ce1..589c2c32c 100644
--- a/src/locale/lb_LU/LC_MESSAGES/django.po
+++ b/src/locale/lb_LU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Luxembourgish\n"
"Language: lb_LU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po
index c358f7b3c..4447af87f 100644
--- a/src/locale/lt_LT/LC_MESSAGES/django.po
+++ b/src/locale/lt_LT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Language: lt_LT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentai"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neteisingas išraiškos sąrašas. Jis turi būti netuščias."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neteisingas loginis operatorius {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Viršytas maksimalus užklausos sąlygų skaičius."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nėra galiojantis pasirinktas laukas."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepalaiko užklausos išraiškos {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Viršytas maksimalus įdėjimo gylis."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po
index e3bb51577..dbcfea250 100644
--- a/src/locale/lv_LV/LC_MESSAGES/django.po
+++ b/src/locale/lv_LV/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Language: lv_LV\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokuments"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/mk_MK/LC_MESSAGES/django.po b/src/locale/mk_MK/LC_MESSAGES/django.po
new file mode 100644
index 000000000..5f72d7290
--- /dev/null
+++ b/src/locale/mk_MK/LC_MESSAGES/django.po
@@ -0,0 +1,2154 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: paperless-ngx\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
+"Last-Translator: \n"
+"Language-Team: Macedonian\n"
+"Language: mk_MK\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n%10==1 && n%100 != 11 ? 0 : 1);\n"
+"X-Crowdin-Project: paperless-ngx\n"
+"X-Crowdin-Project-ID: 500308\n"
+"X-Crowdin-Language: mk\n"
+"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n"
+"X-Crowdin-File-ID: 14\n"
+
+#: documents/apps.py:8
+msgid "Documents"
+msgstr ""
+
+#: documents/filters.py:395
+msgid "Value must be valid JSON."
+msgstr ""
+
+#: documents/filters.py:414
+msgid "Invalid custom field query expression"
+msgstr ""
+
+#: documents/filters.py:424
+msgid "Invalid expression list. Must be nonempty."
+msgstr ""
+
+#: documents/filters.py:445
+msgid "Invalid logical operator {op!r}"
+msgstr ""
+
+#: documents/filters.py:459
+msgid "Maximum number of query conditions exceeded."
+msgstr ""
+
+#: documents/filters.py:524
+msgid "{name!r} is not a valid custom field."
+msgstr ""
+
+#: documents/filters.py:561
+msgid "{data_type} does not support query expr {expr!r}."
+msgstr ""
+
+#: documents/filters.py:669 documents/models.py:135
+msgid "Maximum nesting depth exceeded."
+msgstr ""
+
+#: documents/filters.py:854
+msgid "Custom field not found"
+msgstr ""
+
+#: documents/models.py:38 documents/models.py:768
+msgid "owner"
+msgstr ""
+
+#: documents/models.py:55 documents/models.py:983
+msgid "None"
+msgstr ""
+
+#: documents/models.py:56 documents/models.py:984
+msgid "Any word"
+msgstr ""
+
+#: documents/models.py:57 documents/models.py:985
+msgid "All words"
+msgstr ""
+
+#: documents/models.py:58 documents/models.py:986
+msgid "Exact match"
+msgstr ""
+
+#: documents/models.py:59 documents/models.py:987
+msgid "Regular expression"
+msgstr ""
+
+#: documents/models.py:60 documents/models.py:988
+msgid "Fuzzy word"
+msgstr ""
+
+#: documents/models.py:61
+msgid "Automatic"
+msgstr ""
+
+#: documents/models.py:64 documents/models.py:456 documents/models.py:1526
+#: paperless_mail/models.py:23 paperless_mail/models.py:143
+msgid "name"
+msgstr ""
+
+#: documents/models.py:66 documents/models.py:1052
+msgid "match"
+msgstr ""
+
+#: documents/models.py:69 documents/models.py:1055
+msgid "matching algorithm"
+msgstr ""
+
+#: documents/models.py:74 documents/models.py:1060
+msgid "is insensitive"
+msgstr ""
+
+#: documents/models.py:97 documents/models.py:170
+msgid "correspondent"
+msgstr ""
+
+#: documents/models.py:98
+msgid "correspondents"
+msgstr ""
+
+#: documents/models.py:102
+msgid "color"
+msgstr ""
+
+#: documents/models.py:107
+msgid "is inbox tag"
+msgstr ""
+
+#: documents/models.py:110
+msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
+msgstr ""
+
+#: documents/models.py:116
+msgid "tag"
+msgstr ""
+
+#: documents/models.py:117 documents/models.py:208
+msgid "tags"
+msgstr ""
+
+#: documents/models.py:123
+msgid "Cannot set itself as parent."
+msgstr ""
+
+#: documents/models.py:125
+msgid "Cannot set parent to a descendant."
+msgstr ""
+
+#: documents/models.py:142 documents/models.py:190
+msgid "document type"
+msgstr ""
+
+#: documents/models.py:143
+msgid "document types"
+msgstr ""
+
+#: documents/models.py:148
+msgid "path"
+msgstr ""
+
+#: documents/models.py:152 documents/models.py:179
+msgid "storage path"
+msgstr ""
+
+#: documents/models.py:153
+msgid "storage paths"
+msgstr ""
+
+#: documents/models.py:160
+msgid "Unencrypted"
+msgstr ""
+
+#: documents/models.py:161
+msgid "Encrypted with GNU Privacy Guard"
+msgstr ""
+
+#: documents/models.py:182
+msgid "title"
+msgstr ""
+
+#: documents/models.py:194 documents/models.py:682
+msgid "content"
+msgstr ""
+
+#: documents/models.py:197
+msgid "The raw, text-only data of the document. This field is primarily used for searching."
+msgstr ""
+
+#: documents/models.py:202
+msgid "mime type"
+msgstr ""
+
+#: documents/models.py:212
+msgid "checksum"
+msgstr ""
+
+#: documents/models.py:216
+msgid "The checksum of the original document."
+msgstr ""
+
+#: documents/models.py:220
+msgid "archive checksum"
+msgstr ""
+
+#: documents/models.py:225
+msgid "The checksum of the archived document."
+msgstr ""
+
+#: documents/models.py:229
+msgid "page count"
+msgstr ""
+
+#: documents/models.py:236
+msgid "The number of pages of the document."
+msgstr ""
+
+#: documents/models.py:241 documents/models.py:688 documents/models.py:726
+#: documents/models.py:798 documents/models.py:857
+msgid "created"
+msgstr ""
+
+#: documents/models.py:247
+msgid "modified"
+msgstr ""
+
+#: documents/models.py:254
+msgid "storage type"
+msgstr ""
+
+#: documents/models.py:262
+msgid "added"
+msgstr ""
+
+#: documents/models.py:269
+msgid "filename"
+msgstr ""
+
+#: documents/models.py:275
+msgid "Current filename in storage"
+msgstr ""
+
+#: documents/models.py:279
+msgid "archive filename"
+msgstr ""
+
+#: documents/models.py:285
+msgid "Current archive filename in storage"
+msgstr ""
+
+#: documents/models.py:289
+msgid "original filename"
+msgstr ""
+
+#: documents/models.py:295
+msgid "The original name of the file when it was uploaded"
+msgstr ""
+
+#: documents/models.py:302
+msgid "archive serial number"
+msgstr ""
+
+#: documents/models.py:312
+msgid "The position of this document in your physical document archive."
+msgstr ""
+
+#: documents/models.py:318 documents/models.py:699 documents/models.py:753
+#: documents/models.py:1569
+msgid "document"
+msgstr ""
+
+#: documents/models.py:319
+msgid "documents"
+msgstr ""
+
+#: documents/models.py:437
+msgid "Table"
+msgstr ""
+
+#: documents/models.py:438
+msgid "Small Cards"
+msgstr ""
+
+#: documents/models.py:439
+msgid "Large Cards"
+msgstr ""
+
+#: documents/models.py:442
+msgid "Title"
+msgstr ""
+
+#: documents/models.py:443 documents/models.py:1004
+msgid "Created"
+msgstr ""
+
+#: documents/models.py:444 documents/models.py:1003
+msgid "Added"
+msgstr ""
+
+#: documents/models.py:445
+msgid "Tags"
+msgstr ""
+
+#: documents/models.py:446
+msgid "Correspondent"
+msgstr ""
+
+#: documents/models.py:447
+msgid "Document Type"
+msgstr ""
+
+#: documents/models.py:448
+msgid "Storage Path"
+msgstr ""
+
+#: documents/models.py:449
+msgid "Note"
+msgstr ""
+
+#: documents/models.py:450
+msgid "Owner"
+msgstr ""
+
+#: documents/models.py:451
+msgid "Shared"
+msgstr ""
+
+#: documents/models.py:452
+msgid "ASN"
+msgstr ""
+
+#: documents/models.py:453
+msgid "Pages"
+msgstr ""
+
+#: documents/models.py:459
+msgid "show on dashboard"
+msgstr ""
+
+#: documents/models.py:462
+msgid "show in sidebar"
+msgstr ""
+
+#: documents/models.py:466
+msgid "sort field"
+msgstr ""
+
+#: documents/models.py:471
+msgid "sort reverse"
+msgstr ""
+
+#: documents/models.py:474
+msgid "View page size"
+msgstr ""
+
+#: documents/models.py:482
+msgid "View display mode"
+msgstr ""
+
+#: documents/models.py:489
+msgid "Document display fields"
+msgstr ""
+
+#: documents/models.py:496 documents/models.py:559
+msgid "saved view"
+msgstr ""
+
+#: documents/models.py:497
+msgid "saved views"
+msgstr ""
+
+#: documents/models.py:505
+msgid "title contains"
+msgstr ""
+
+#: documents/models.py:506
+msgid "content contains"
+msgstr ""
+
+#: documents/models.py:507
+msgid "ASN is"
+msgstr ""
+
+#: documents/models.py:508
+msgid "correspondent is"
+msgstr ""
+
+#: documents/models.py:509
+msgid "document type is"
+msgstr ""
+
+#: documents/models.py:510
+msgid "is in inbox"
+msgstr ""
+
+#: documents/models.py:511
+msgid "has tag"
+msgstr ""
+
+#: documents/models.py:512
+msgid "has any tag"
+msgstr ""
+
+#: documents/models.py:513
+msgid "created before"
+msgstr ""
+
+#: documents/models.py:514
+msgid "created after"
+msgstr ""
+
+#: documents/models.py:515
+msgid "created year is"
+msgstr ""
+
+#: documents/models.py:516
+msgid "created month is"
+msgstr ""
+
+#: documents/models.py:517
+msgid "created day is"
+msgstr ""
+
+#: documents/models.py:518
+msgid "added before"
+msgstr ""
+
+#: documents/models.py:519
+msgid "added after"
+msgstr ""
+
+#: documents/models.py:520
+msgid "modified before"
+msgstr ""
+
+#: documents/models.py:521
+msgid "modified after"
+msgstr ""
+
+#: documents/models.py:522
+msgid "does not have tag"
+msgstr ""
+
+#: documents/models.py:523
+msgid "does not have ASN"
+msgstr ""
+
+#: documents/models.py:524
+msgid "title or content contains"
+msgstr ""
+
+#: documents/models.py:525
+msgid "fulltext query"
+msgstr ""
+
+#: documents/models.py:526
+msgid "more like this"
+msgstr ""
+
+#: documents/models.py:527
+msgid "has tags in"
+msgstr ""
+
+#: documents/models.py:528
+msgid "ASN greater than"
+msgstr ""
+
+#: documents/models.py:529
+msgid "ASN less than"
+msgstr ""
+
+#: documents/models.py:530
+msgid "storage path is"
+msgstr ""
+
+#: documents/models.py:531
+msgid "has correspondent in"
+msgstr ""
+
+#: documents/models.py:532
+msgid "does not have correspondent in"
+msgstr ""
+
+#: documents/models.py:533
+msgid "has document type in"
+msgstr ""
+
+#: documents/models.py:534
+msgid "does not have document type in"
+msgstr ""
+
+#: documents/models.py:535
+msgid "has storage path in"
+msgstr ""
+
+#: documents/models.py:536
+msgid "does not have storage path in"
+msgstr ""
+
+#: documents/models.py:537
+msgid "owner is"
+msgstr ""
+
+#: documents/models.py:538
+msgid "has owner in"
+msgstr ""
+
+#: documents/models.py:539
+msgid "does not have owner"
+msgstr ""
+
+#: documents/models.py:540
+msgid "does not have owner in"
+msgstr ""
+
+#: documents/models.py:541
+msgid "has custom field value"
+msgstr ""
+
+#: documents/models.py:542
+msgid "is shared by me"
+msgstr ""
+
+#: documents/models.py:543
+msgid "has custom fields"
+msgstr ""
+
+#: documents/models.py:544
+msgid "has custom field in"
+msgstr ""
+
+#: documents/models.py:545
+msgid "does not have custom field in"
+msgstr ""
+
+#: documents/models.py:546
+msgid "does not have custom field"
+msgstr ""
+
+#: documents/models.py:547
+msgid "custom fields query"
+msgstr ""
+
+#: documents/models.py:548
+msgid "created to"
+msgstr ""
+
+#: documents/models.py:549
+msgid "created from"
+msgstr ""
+
+#: documents/models.py:550
+msgid "added to"
+msgstr ""
+
+#: documents/models.py:551
+msgid "added from"
+msgstr ""
+
+#: documents/models.py:552
+msgid "mime type is"
+msgstr ""
+
+#: documents/models.py:562
+msgid "rule type"
+msgstr ""
+
+#: documents/models.py:564
+msgid "value"
+msgstr ""
+
+#: documents/models.py:567
+msgid "filter rule"
+msgstr ""
+
+#: documents/models.py:568
+msgid "filter rules"
+msgstr ""
+
+#: documents/models.py:592
+msgid "Auto Task"
+msgstr ""
+
+#: documents/models.py:593
+msgid "Scheduled Task"
+msgstr ""
+
+#: documents/models.py:594
+msgid "Manual Task"
+msgstr ""
+
+#: documents/models.py:597
+msgid "Consume File"
+msgstr ""
+
+#: documents/models.py:598
+msgid "Train Classifier"
+msgstr ""
+
+#: documents/models.py:599
+msgid "Check Sanity"
+msgstr ""
+
+#: documents/models.py:600
+msgid "Index Optimize"
+msgstr ""
+
+#: documents/models.py:605
+msgid "Task ID"
+msgstr ""
+
+#: documents/models.py:606
+msgid "Celery ID for the Task that was run"
+msgstr ""
+
+#: documents/models.py:611
+msgid "Acknowledged"
+msgstr ""
+
+#: documents/models.py:612
+msgid "If the task is acknowledged via the frontend or API"
+msgstr ""
+
+#: documents/models.py:618
+msgid "Task Filename"
+msgstr ""
+
+#: documents/models.py:619
+msgid "Name of the file which the Task was run for"
+msgstr ""
+
+#: documents/models.py:626
+msgid "Task Name"
+msgstr ""
+
+#: documents/models.py:627
+msgid "Name of the task that was run"
+msgstr ""
+
+#: documents/models.py:634
+msgid "Task State"
+msgstr ""
+
+#: documents/models.py:635
+msgid "Current state of the task being run"
+msgstr ""
+
+#: documents/models.py:641
+msgid "Created DateTime"
+msgstr ""
+
+#: documents/models.py:642
+msgid "Datetime field when the task result was created in UTC"
+msgstr ""
+
+#: documents/models.py:648
+msgid "Started DateTime"
+msgstr ""
+
+#: documents/models.py:649
+msgid "Datetime field when the task was started in UTC"
+msgstr ""
+
+#: documents/models.py:655
+msgid "Completed DateTime"
+msgstr ""
+
+#: documents/models.py:656
+msgid "Datetime field when the task was completed in UTC"
+msgstr ""
+
+#: documents/models.py:662
+msgid "Result Data"
+msgstr ""
+
+#: documents/models.py:664
+msgid "The data returned by the task"
+msgstr ""
+
+#: documents/models.py:672
+msgid "Task Type"
+msgstr ""
+
+#: documents/models.py:673
+msgid "The type of task that was run"
+msgstr ""
+
+#: documents/models.py:684
+msgid "Note for the document"
+msgstr ""
+
+#: documents/models.py:708
+msgid "user"
+msgstr ""
+
+#: documents/models.py:713
+msgid "note"
+msgstr ""
+
+#: documents/models.py:714
+msgid "notes"
+msgstr ""
+
+#: documents/models.py:722
+msgid "Archive"
+msgstr ""
+
+#: documents/models.py:723
+msgid "Original"
+msgstr ""
+
+#: documents/models.py:734 paperless_mail/models.py:75
+msgid "expiration"
+msgstr ""
+
+#: documents/models.py:741
+msgid "slug"
+msgstr ""
+
+#: documents/models.py:773
+msgid "share link"
+msgstr ""
+
+#: documents/models.py:774
+msgid "share links"
+msgstr ""
+
+#: documents/models.py:786
+msgid "String"
+msgstr ""
+
+#: documents/models.py:787
+msgid "URL"
+msgstr ""
+
+#: documents/models.py:788
+msgid "Date"
+msgstr ""
+
+#: documents/models.py:789
+msgid "Boolean"
+msgstr ""
+
+#: documents/models.py:790
+msgid "Integer"
+msgstr ""
+
+#: documents/models.py:791
+msgid "Float"
+msgstr ""
+
+#: documents/models.py:792
+msgid "Monetary"
+msgstr ""
+
+#: documents/models.py:793
+msgid "Document Link"
+msgstr ""
+
+#: documents/models.py:794
+msgid "Select"
+msgstr ""
+
+#: documents/models.py:795
+msgid "Long Text"
+msgstr ""
+
+#: documents/models.py:807
+msgid "data type"
+msgstr ""
+
+#: documents/models.py:814
+msgid "extra data"
+msgstr ""
+
+#: documents/models.py:818
+msgid "Extra data for the custom field, such as select options"
+msgstr ""
+
+#: documents/models.py:824
+msgid "custom field"
+msgstr ""
+
+#: documents/models.py:825
+msgid "custom fields"
+msgstr ""
+
+#: documents/models.py:925
+msgid "custom field instance"
+msgstr ""
+
+#: documents/models.py:926
+msgid "custom field instances"
+msgstr ""
+
+#: documents/models.py:991
+msgid "Consumption Started"
+msgstr ""
+
+#: documents/models.py:992
+msgid "Document Added"
+msgstr ""
+
+#: documents/models.py:993
+msgid "Document Updated"
+msgstr ""
+
+#: documents/models.py:994
+msgid "Scheduled"
+msgstr ""
+
+#: documents/models.py:997
+msgid "Consume Folder"
+msgstr ""
+
+#: documents/models.py:998
+msgid "Api Upload"
+msgstr ""
+
+#: documents/models.py:999
+msgid "Mail Fetch"
+msgstr ""
+
+#: documents/models.py:1000
+msgid "Web UI"
+msgstr ""
+
+#: documents/models.py:1005
+msgid "Modified"
+msgstr ""
+
+#: documents/models.py:1006
+msgid "Custom Field"
+msgstr ""
+
+#: documents/models.py:1009
+msgid "Workflow Trigger Type"
+msgstr ""
+
+#: documents/models.py:1021
+msgid "filter path"
+msgstr ""
+
+#: documents/models.py:1026
+msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive."
+msgstr ""
+
+#: documents/models.py:1033
+msgid "filter filename"
+msgstr ""
+
+#: documents/models.py:1038 paperless_mail/models.py:200
+msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive."
+msgstr ""
+
+#: documents/models.py:1049
+msgid "filter documents from this mail rule"
+msgstr ""
+
+#: documents/models.py:1065
+msgid "has these tag(s)"
+msgstr ""
+
+#: documents/models.py:1072
+msgid "has all of these tag(s)"
+msgstr ""
+
+#: documents/models.py:1079
+msgid "does not have these tag(s)"
+msgstr ""
+
+#: documents/models.py:1087
+msgid "has this document type"
+msgstr ""
+
+#: documents/models.py:1094
+msgid "does not have these document type(s)"
+msgstr ""
+
+#: documents/models.py:1102
+msgid "has this correspondent"
+msgstr ""
+
+#: documents/models.py:1109
+msgid "does not have these correspondent(s)"
+msgstr ""
+
+#: documents/models.py:1117
+msgid "has this storage path"
+msgstr ""
+
+#: documents/models.py:1124
+msgid "does not have these storage path(s)"
+msgstr ""
+
+#: documents/models.py:1128
+msgid "filter custom field query"
+msgstr ""
+
+#: documents/models.py:1131
+msgid "JSON-encoded custom field query expression."
+msgstr ""
+
+#: documents/models.py:1135
+msgid "schedule offset days"
+msgstr ""
+
+#: documents/models.py:1138
+msgid "The number of days to offset the schedule trigger by."
+msgstr ""
+
+#: documents/models.py:1143
+msgid "schedule is recurring"
+msgstr ""
+
+#: documents/models.py:1146
+msgid "If the schedule should be recurring."
+msgstr ""
+
+#: documents/models.py:1151
+msgid "schedule recurring delay in days"
+msgstr ""
+
+#: documents/models.py:1155
+msgid "The number of days between recurring schedule triggers."
+msgstr ""
+
+#: documents/models.py:1160
+msgid "schedule date field"
+msgstr ""
+
+#: documents/models.py:1165
+msgid "The field to check for a schedule trigger."
+msgstr ""
+
+#: documents/models.py:1174
+msgid "schedule date custom field"
+msgstr ""
+
+#: documents/models.py:1178
+msgid "workflow trigger"
+msgstr ""
+
+#: documents/models.py:1179
+msgid "workflow triggers"
+msgstr ""
+
+#: documents/models.py:1187
+msgid "email subject"
+msgstr ""
+
+#: documents/models.py:1191
+msgid "The subject of the email, can include some placeholders, see documentation."
+msgstr ""
+
+#: documents/models.py:1197
+msgid "email body"
+msgstr ""
+
+#: documents/models.py:1200
+msgid "The body (message) of the email, can include some placeholders, see documentation."
+msgstr ""
+
+#: documents/models.py:1206
+msgid "emails to"
+msgstr ""
+
+#: documents/models.py:1209
+msgid "The destination email addresses, comma separated."
+msgstr ""
+
+#: documents/models.py:1215
+msgid "include document in email"
+msgstr ""
+
+#: documents/models.py:1226
+msgid "webhook url"
+msgstr ""
+
+#: documents/models.py:1229
+msgid "The destination URL for the notification."
+msgstr ""
+
+#: documents/models.py:1234
+msgid "use parameters"
+msgstr ""
+
+#: documents/models.py:1239
+msgid "send as JSON"
+msgstr ""
+
+#: documents/models.py:1243
+msgid "webhook parameters"
+msgstr ""
+
+#: documents/models.py:1246
+msgid "The parameters to send with the webhook URL if body not used."
+msgstr ""
+
+#: documents/models.py:1250
+msgid "webhook body"
+msgstr ""
+
+#: documents/models.py:1253
+msgid "The body to send with the webhook URL if parameters not used."
+msgstr ""
+
+#: documents/models.py:1257
+msgid "webhook headers"
+msgstr ""
+
+#: documents/models.py:1260
+msgid "The headers to send with the webhook URL."
+msgstr ""
+
+#: documents/models.py:1265
+msgid "include document in webhook"
+msgstr ""
+
+#: documents/models.py:1276
+msgid "Assignment"
+msgstr ""
+
+#: documents/models.py:1280
+msgid "Removal"
+msgstr ""
+
+#: documents/models.py:1284 documents/templates/account/password_reset.html:15
+msgid "Email"
+msgstr ""
+
+#: documents/models.py:1288
+msgid "Webhook"
+msgstr ""
+
+#: documents/models.py:1292
+msgid "Workflow Action Type"
+msgstr ""
+
+#: documents/models.py:1298
+msgid "assign title"
+msgstr ""
+
+#: documents/models.py:1302
+msgid "Assign a document title, must be a Jinja2 template, see documentation."
+msgstr ""
+
+#: documents/models.py:1310 paperless_mail/models.py:274
+msgid "assign this tag"
+msgstr ""
+
+#: documents/models.py:1319 paperless_mail/models.py:282
+msgid "assign this document type"
+msgstr ""
+
+#: documents/models.py:1328 paperless_mail/models.py:296
+msgid "assign this correspondent"
+msgstr ""
+
+#: documents/models.py:1337
+msgid "assign this storage path"
+msgstr ""
+
+#: documents/models.py:1346
+msgid "assign this owner"
+msgstr ""
+
+#: documents/models.py:1353
+msgid "grant view permissions to these users"
+msgstr ""
+
+#: documents/models.py:1360
+msgid "grant view permissions to these groups"
+msgstr ""
+
+#: documents/models.py:1367
+msgid "grant change permissions to these users"
+msgstr ""
+
+#: documents/models.py:1374
+msgid "grant change permissions to these groups"
+msgstr ""
+
+#: documents/models.py:1381
+msgid "assign these custom fields"
+msgstr ""
+
+#: documents/models.py:1385
+msgid "custom field values"
+msgstr ""
+
+#: documents/models.py:1389
+msgid "Optional values to assign to the custom fields."
+msgstr ""
+
+#: documents/models.py:1398
+msgid "remove these tag(s)"
+msgstr ""
+
+#: documents/models.py:1403
+msgid "remove all tags"
+msgstr ""
+
+#: documents/models.py:1410
+msgid "remove these document type(s)"
+msgstr ""
+
+#: documents/models.py:1415
+msgid "remove all document types"
+msgstr ""
+
+#: documents/models.py:1422
+msgid "remove these correspondent(s)"
+msgstr ""
+
+#: documents/models.py:1427
+msgid "remove all correspondents"
+msgstr ""
+
+#: documents/models.py:1434
+msgid "remove these storage path(s)"
+msgstr ""
+
+#: documents/models.py:1439
+msgid "remove all storage paths"
+msgstr ""
+
+#: documents/models.py:1446
+msgid "remove these owner(s)"
+msgstr ""
+
+#: documents/models.py:1451
+msgid "remove all owners"
+msgstr ""
+
+#: documents/models.py:1458
+msgid "remove view permissions for these users"
+msgstr ""
+
+#: documents/models.py:1465
+msgid "remove view permissions for these groups"
+msgstr ""
+
+#: documents/models.py:1472
+msgid "remove change permissions for these users"
+msgstr ""
+
+#: documents/models.py:1479
+msgid "remove change permissions for these groups"
+msgstr ""
+
+#: documents/models.py:1484
+msgid "remove all permissions"
+msgstr ""
+
+#: documents/models.py:1491
+msgid "remove these custom fields"
+msgstr ""
+
+#: documents/models.py:1496
+msgid "remove all custom fields"
+msgstr ""
+
+#: documents/models.py:1505
+msgid "email"
+msgstr ""
+
+#: documents/models.py:1514
+msgid "webhook"
+msgstr ""
+
+#: documents/models.py:1518
+msgid "workflow action"
+msgstr ""
+
+#: documents/models.py:1519
+msgid "workflow actions"
+msgstr ""
+
+#: documents/models.py:1528 paperless_mail/models.py:145
+msgid "order"
+msgstr ""
+
+#: documents/models.py:1534
+msgid "triggers"
+msgstr ""
+
+#: documents/models.py:1541
+msgid "actions"
+msgstr ""
+
+#: documents/models.py:1544 paperless_mail/models.py:154
+msgid "enabled"
+msgstr ""
+
+#: documents/models.py:1555
+msgid "workflow"
+msgstr ""
+
+#: documents/models.py:1559
+msgid "workflow trigger type"
+msgstr ""
+
+#: documents/models.py:1573
+msgid "date run"
+msgstr ""
+
+#: documents/models.py:1579
+msgid "workflow run"
+msgstr ""
+
+#: documents/models.py:1580
+msgid "workflow runs"
+msgstr ""
+
+#: documents/serialisers.py:145
+#, python-format
+msgid "Invalid regular expression: %(error)s"
+msgstr ""
+
+#: documents/serialisers.py:619
+msgid "Invalid color."
+msgstr ""
+
+#: documents/serialisers.py:1805
+#, python-format
+msgid "File type %(type)s not supported"
+msgstr ""
+
+#: documents/serialisers.py:1849
+#, python-format
+msgid "Custom field id must be an integer: %(id)s"
+msgstr ""
+
+#: documents/serialisers.py:1856
+#, python-format
+msgid "Custom field with id %(id)s does not exist"
+msgstr ""
+
+#: documents/serialisers.py:1873 documents/serialisers.py:1883
+msgid "Custom fields must be a list of integers or an object mapping ids to values."
+msgstr ""
+
+#: documents/serialisers.py:1878
+msgid "Some custom fields don't exist or were specified twice."
+msgstr ""
+
+#: documents/serialisers.py:1993
+msgid "Invalid variable detected."
+msgstr ""
+
+#: documents/templates/account/account_inactive.html:5
+msgid "Paperless-ngx account inactive"
+msgstr ""
+
+#: documents/templates/account/account_inactive.html:9
+msgid "Account inactive."
+msgstr ""
+
+#: documents/templates/account/account_inactive.html:14
+msgid "This account is inactive."
+msgstr ""
+
+#: documents/templates/account/account_inactive.html:16
+msgid "Return to login"
+msgstr ""
+
+#: documents/templates/account/email/base_message.txt:1
+#, python-format
+msgid "Hello from %(site_name)s!"
+msgstr ""
+
+#: documents/templates/account/email/base_message.txt:5
+#, python-format
+msgid "Thank you for using %(site_name)s!\n"
+"%(site_domain)s"
+msgstr ""
+
+#: documents/templates/account/login.html:5
+msgid "Paperless-ngx sign in"
+msgstr ""
+
+#: documents/templates/account/login.html:10
+msgid "Please sign in."
+msgstr ""
+
+#: documents/templates/account/login.html:12
+#, python-format
+msgid "Don't have an account yet? Sign up"
+msgstr ""
+
+#: documents/templates/account/login.html:25
+#: documents/templates/account/signup.html:22
+#: documents/templates/socialaccount/signup.html:13
+msgid "Username"
+msgstr ""
+
+#: documents/templates/account/login.html:26
+#: documents/templates/account/signup.html:24
+msgid "Password"
+msgstr ""
+
+#: documents/templates/account/login.html:36
+#: documents/templates/mfa/authenticate.html:23
+msgid "Sign in"
+msgstr ""
+
+#: documents/templates/account/login.html:40
+msgid "Forgot your password?"
+msgstr ""
+
+#: documents/templates/account/login.html:51
+#: documents/templates/account/signup.html:57
+msgid "or sign in via"
+msgstr ""
+
+#: documents/templates/account/password_reset.html:5
+msgid "Paperless-ngx reset password request"
+msgstr ""
+
+#: documents/templates/account/password_reset.html:9
+msgid "Enter your email address below, and we'll email instructions for setting a new one."
+msgstr ""
+
+#: documents/templates/account/password_reset.html:12
+msgid "An error occurred. Please try again."
+msgstr ""
+
+#: documents/templates/account/password_reset.html:21
+msgid "Send me instructions!"
+msgstr ""
+
+#: documents/templates/account/password_reset_done.html:5
+msgid "Paperless-ngx reset password sent"
+msgstr ""
+
+#: documents/templates/account/password_reset_done.html:9
+msgid "Check your inbox."
+msgstr ""
+
+#: documents/templates/account/password_reset_done.html:13
+msgid "We've emailed you instructions for setting your password. You should receive the email shortly!"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:5
+msgid "Paperless-ngx reset password confirmation"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:9
+msgid "Set a new password."
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:15
+msgid "request a new password reset"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:17
+msgid "New Password"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:18
+msgid "Confirm Password"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key.html:28
+msgid "Change my password"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key_done.html:5
+msgid "Paperless-ngx reset password complete"
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key_done.html:9
+msgid "Password reset complete."
+msgstr ""
+
+#: documents/templates/account/password_reset_from_key_done.html:14
+#, python-format
+msgid "Your new password has been set. You can now log in"
+msgstr ""
+
+#: documents/templates/account/signup.html:5
+msgid "Paperless-ngx sign up"
+msgstr ""
+
+#: documents/templates/account/signup.html:11
+#, python-format
+msgid "Already have an account? Sign in"
+msgstr ""
+
+#: documents/templates/account/signup.html:19
+msgid "Note: This is the first user account for this installation and will be granted superuser privileges."
+msgstr ""
+
+#: documents/templates/account/signup.html:23
+#: documents/templates/socialaccount/signup.html:14
+msgid "Email (optional)"
+msgstr ""
+
+#: documents/templates/account/signup.html:25
+msgid "Password (again)"
+msgstr ""
+
+#: documents/templates/account/signup.html:43
+#: documents/templates/socialaccount/signup.html:27
+msgid "Sign up"
+msgstr ""
+
+#: documents/templates/index.html:61
+msgid "Paperless-ngx is loading..."
+msgstr ""
+
+#: documents/templates/index.html:62
+msgid "Still here?! Hmm, something might be wrong."
+msgstr ""
+
+#: documents/templates/index.html:62
+msgid "Here's a link to the docs."
+msgstr ""
+
+#: documents/templates/mfa/authenticate.html:7
+msgid "Paperless-ngx Two-Factor Authentication"
+msgstr ""
+
+#: documents/templates/mfa/authenticate.html:12
+msgid "Your account is protected by two-factor authentication. Please enter an authenticator code:"
+msgstr ""
+
+#: documents/templates/mfa/authenticate.html:17
+msgid "Code"
+msgstr ""
+
+#: documents/templates/mfa/authenticate.html:24
+msgid "Cancel"
+msgstr ""
+
+#: documents/templates/paperless-ngx/base.html:58
+msgid "Share link was not found."
+msgstr ""
+
+#: documents/templates/paperless-ngx/base.html:62
+msgid "Share link has expired."
+msgstr ""
+
+#: documents/templates/socialaccount/authentication_error.html:5
+#: documents/templates/socialaccount/login.html:5
+msgid "Paperless-ngx social account sign in"
+msgstr ""
+
+#: documents/templates/socialaccount/authentication_error.html:10
+#, python-format
+msgid "An error occurred while attempting to login via your social network account. Back to the login page"
+msgstr ""
+
+#: documents/templates/socialaccount/login.html:10
+#, python-format
+msgid "You are about to connect a new third-party account from %(provider)s."
+msgstr ""
+
+#: documents/templates/socialaccount/login.html:13
+msgid "Continue"
+msgstr ""
+
+#: documents/templates/socialaccount/signup.html:5
+msgid "Paperless-ngx social account sign up"
+msgstr ""
+
+#: documents/templates/socialaccount/signup.html:10
+#, python-format
+msgid "You are about to use your %(provider_name)s account to login."
+msgstr ""
+
+#: documents/templates/socialaccount/signup.html:11
+msgid "As a final step, please complete the following form:"
+msgstr ""
+
+#: documents/validators.py:24
+#, python-brace-format
+msgid "Unable to parse URI {value}, missing scheme"
+msgstr ""
+
+#: documents/validators.py:29
+#, python-brace-format
+msgid "Unable to parse URI {value}, missing net location or path"
+msgstr ""
+
+#: documents/validators.py:36
+msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
+msgstr ""
+
+#: documents/validators.py:45
+#, python-brace-format
+msgid "Unable to parse URI {value}"
+msgstr ""
+
+#: paperless/apps.py:11
+msgid "Paperless"
+msgstr ""
+
+#: paperless/models.py:26
+msgid "pdf"
+msgstr ""
+
+#: paperless/models.py:27
+msgid "pdfa"
+msgstr ""
+
+#: paperless/models.py:28
+msgid "pdfa-1"
+msgstr ""
+
+#: paperless/models.py:29
+msgid "pdfa-2"
+msgstr ""
+
+#: paperless/models.py:30
+msgid "pdfa-3"
+msgstr ""
+
+#: paperless/models.py:39
+msgid "skip"
+msgstr ""
+
+#: paperless/models.py:40
+msgid "redo"
+msgstr ""
+
+#: paperless/models.py:41
+msgid "force"
+msgstr ""
+
+#: paperless/models.py:42
+msgid "skip_noarchive"
+msgstr ""
+
+#: paperless/models.py:50
+msgid "never"
+msgstr ""
+
+#: paperless/models.py:51
+msgid "with_text"
+msgstr ""
+
+#: paperless/models.py:52
+msgid "always"
+msgstr ""
+
+#: paperless/models.py:60
+msgid "clean"
+msgstr ""
+
+#: paperless/models.py:61
+msgid "clean-final"
+msgstr ""
+
+#: paperless/models.py:62
+msgid "none"
+msgstr ""
+
+#: paperless/models.py:70
+msgid "LeaveColorUnchanged"
+msgstr ""
+
+#: paperless/models.py:71
+msgid "RGB"
+msgstr ""
+
+#: paperless/models.py:72
+msgid "UseDeviceIndependentColor"
+msgstr ""
+
+#: paperless/models.py:73
+msgid "Gray"
+msgstr ""
+
+#: paperless/models.py:74
+msgid "CMYK"
+msgstr ""
+
+#: paperless/models.py:83
+msgid "Sets the output PDF type"
+msgstr ""
+
+#: paperless/models.py:95
+msgid "Do OCR from page 1 to this value"
+msgstr ""
+
+#: paperless/models.py:101
+msgid "Do OCR using these languages"
+msgstr ""
+
+#: paperless/models.py:108
+msgid "Sets the OCR mode"
+msgstr ""
+
+#: paperless/models.py:116
+msgid "Controls the generation of an archive file"
+msgstr ""
+
+#: paperless/models.py:124
+msgid "Sets image DPI fallback value"
+msgstr ""
+
+#: paperless/models.py:131
+msgid "Controls the unpaper cleaning"
+msgstr ""
+
+#: paperless/models.py:138
+msgid "Enables deskew"
+msgstr ""
+
+#: paperless/models.py:141
+msgid "Enables page rotation"
+msgstr ""
+
+#: paperless/models.py:146
+msgid "Sets the threshold for rotation of pages"
+msgstr ""
+
+#: paperless/models.py:152
+msgid "Sets the maximum image size for decompression"
+msgstr ""
+
+#: paperless/models.py:158
+msgid "Sets the Ghostscript color conversion strategy"
+msgstr ""
+
+#: paperless/models.py:166
+msgid "Adds additional user arguments for OCRMyPDF"
+msgstr ""
+
+#: paperless/models.py:175
+msgid "Application title"
+msgstr ""
+
+#: paperless/models.py:182
+msgid "Application logo"
+msgstr ""
+
+#: paperless/models.py:197
+msgid "Enables barcode scanning"
+msgstr ""
+
+#: paperless/models.py:203
+msgid "Enables barcode TIFF support"
+msgstr ""
+
+#: paperless/models.py:209
+msgid "Sets the barcode string"
+msgstr ""
+
+#: paperless/models.py:217
+msgid "Retains split pages"
+msgstr ""
+
+#: paperless/models.py:223
+msgid "Enables ASN barcode"
+msgstr ""
+
+#: paperless/models.py:229
+msgid "Sets the ASN barcode prefix"
+msgstr ""
+
+#: paperless/models.py:237
+msgid "Sets the barcode upscale factor"
+msgstr ""
+
+#: paperless/models.py:244
+msgid "Sets the barcode DPI"
+msgstr ""
+
+#: paperless/models.py:251
+msgid "Sets the maximum pages for barcode"
+msgstr ""
+
+#: paperless/models.py:258
+msgid "Enables tag barcode"
+msgstr ""
+
+#: paperless/models.py:264
+msgid "Sets the tag barcode mapping"
+msgstr ""
+
+#: paperless/models.py:269
+msgid "paperless application settings"
+msgstr ""
+
+#: paperless/settings.py:773
+msgid "English (US)"
+msgstr ""
+
+#: paperless/settings.py:774
+msgid "Arabic"
+msgstr ""
+
+#: paperless/settings.py:775
+msgid "Afrikaans"
+msgstr ""
+
+#: paperless/settings.py:776
+msgid "Belarusian"
+msgstr ""
+
+#: paperless/settings.py:777
+msgid "Bulgarian"
+msgstr ""
+
+#: paperless/settings.py:778
+msgid "Catalan"
+msgstr ""
+
+#: paperless/settings.py:779
+msgid "Czech"
+msgstr ""
+
+#: paperless/settings.py:780
+msgid "Danish"
+msgstr ""
+
+#: paperless/settings.py:781
+msgid "German"
+msgstr ""
+
+#: paperless/settings.py:782
+msgid "Greek"
+msgstr ""
+
+#: paperless/settings.py:783
+msgid "English (GB)"
+msgstr ""
+
+#: paperless/settings.py:784
+msgid "Spanish"
+msgstr ""
+
+#: paperless/settings.py:785
+msgid "Persian"
+msgstr ""
+
+#: paperless/settings.py:786
+msgid "Finnish"
+msgstr ""
+
+#: paperless/settings.py:787
+msgid "French"
+msgstr ""
+
+#: paperless/settings.py:788
+msgid "Hungarian"
+msgstr ""
+
+#: paperless/settings.py:789
+msgid "Italian"
+msgstr ""
+
+#: paperless/settings.py:790
+msgid "Japanese"
+msgstr ""
+
+#: paperless/settings.py:791
+msgid "Korean"
+msgstr ""
+
+#: paperless/settings.py:792
+msgid "Luxembourgish"
+msgstr ""
+
+#: paperless/settings.py:793
+msgid "Norwegian"
+msgstr ""
+
+#: paperless/settings.py:794
+msgid "Dutch"
+msgstr ""
+
+#: paperless/settings.py:795
+msgid "Polish"
+msgstr ""
+
+#: paperless/settings.py:796
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: paperless/settings.py:797
+msgid "Portuguese"
+msgstr ""
+
+#: paperless/settings.py:798
+msgid "Romanian"
+msgstr ""
+
+#: paperless/settings.py:799
+msgid "Russian"
+msgstr ""
+
+#: paperless/settings.py:800
+msgid "Slovak"
+msgstr ""
+
+#: paperless/settings.py:801
+msgid "Slovenian"
+msgstr ""
+
+#: paperless/settings.py:802
+msgid "Serbian"
+msgstr ""
+
+#: paperless/settings.py:803
+msgid "Swedish"
+msgstr ""
+
+#: paperless/settings.py:804
+msgid "Turkish"
+msgstr ""
+
+#: paperless/settings.py:805
+msgid "Ukrainian"
+msgstr ""
+
+#: paperless/settings.py:806
+msgid "Vietnamese"
+msgstr ""
+
+#: paperless/settings.py:807
+msgid "Chinese Simplified"
+msgstr ""
+
+#: paperless/settings.py:808
+msgid "Chinese Traditional"
+msgstr ""
+
+#: paperless/urls.py:370
+msgid "Paperless-ngx administration"
+msgstr ""
+
+#: paperless_mail/admin.py:39
+msgid "Authentication"
+msgstr ""
+
+#: paperless_mail/admin.py:42
+msgid "Advanced settings"
+msgstr ""
+
+#: paperless_mail/admin.py:58
+msgid "Filter"
+msgstr ""
+
+#: paperless_mail/admin.py:61
+msgid "Paperless will only process mails that match ALL of the filters given below."
+msgstr ""
+
+#: paperless_mail/admin.py:78
+msgid "Actions"
+msgstr ""
+
+#: paperless_mail/admin.py:81
+msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail."
+msgstr ""
+
+#: paperless_mail/admin.py:89
+msgid "Metadata"
+msgstr ""
+
+#: paperless_mail/admin.py:92
+msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined."
+msgstr ""
+
+#: paperless_mail/apps.py:11
+msgid "Paperless mail"
+msgstr ""
+
+#: paperless_mail/models.py:10
+msgid "mail account"
+msgstr ""
+
+#: paperless_mail/models.py:11
+msgid "mail accounts"
+msgstr ""
+
+#: paperless_mail/models.py:14
+msgid "No encryption"
+msgstr ""
+
+#: paperless_mail/models.py:15
+msgid "Use SSL"
+msgstr ""
+
+#: paperless_mail/models.py:16
+msgid "Use STARTTLS"
+msgstr ""
+
+#: paperless_mail/models.py:19
+msgid "IMAP"
+msgstr ""
+
+#: paperless_mail/models.py:20
+msgid "Gmail OAuth"
+msgstr ""
+
+#: paperless_mail/models.py:21
+msgid "Outlook OAuth"
+msgstr ""
+
+#: paperless_mail/models.py:25
+msgid "IMAP server"
+msgstr ""
+
+#: paperless_mail/models.py:28
+msgid "IMAP port"
+msgstr ""
+
+#: paperless_mail/models.py:32
+msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections."
+msgstr ""
+
+#: paperless_mail/models.py:38
+msgid "IMAP security"
+msgstr ""
+
+#: paperless_mail/models.py:43
+msgid "username"
+msgstr ""
+
+#: paperless_mail/models.py:45
+msgid "password"
+msgstr ""
+
+#: paperless_mail/models.py:47
+msgid "Is token authentication"
+msgstr ""
+
+#: paperless_mail/models.py:50
+msgid "character set"
+msgstr ""
+
+#: paperless_mail/models.py:54
+msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'."
+msgstr ""
+
+#: paperless_mail/models.py:60
+msgid "account type"
+msgstr ""
+
+#: paperless_mail/models.py:66
+msgid "refresh token"
+msgstr ""
+
+#: paperless_mail/models.py:70
+msgid "The refresh token to use for token authentication e.g. with oauth2."
+msgstr ""
+
+#: paperless_mail/models.py:79
+msgid "The expiration date of the refresh token. "
+msgstr ""
+
+#: paperless_mail/models.py:89
+msgid "mail rule"
+msgstr ""
+
+#: paperless_mail/models.py:90
+msgid "mail rules"
+msgstr ""
+
+#: paperless_mail/models.py:104 paperless_mail/models.py:115
+msgid "Only process attachments."
+msgstr ""
+
+#: paperless_mail/models.py:105
+msgid "Process full Mail (with embedded attachments in file) as .eml"
+msgstr ""
+
+#: paperless_mail/models.py:109
+msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents"
+msgstr ""
+
+#: paperless_mail/models.py:116
+msgid "Process all files, including 'inline' attachments."
+msgstr ""
+
+#: paperless_mail/models.py:119
+msgid "System default"
+msgstr ""
+
+#: paperless_mail/models.py:120
+msgid "Text, then HTML"
+msgstr ""
+
+#: paperless_mail/models.py:121
+msgid "HTML, then text"
+msgstr ""
+
+#: paperless_mail/models.py:122
+msgid "HTML only"
+msgstr ""
+
+#: paperless_mail/models.py:123
+msgid "Text only"
+msgstr ""
+
+#: paperless_mail/models.py:126
+msgid "Delete"
+msgstr ""
+
+#: paperless_mail/models.py:127
+msgid "Move to specified folder"
+msgstr ""
+
+#: paperless_mail/models.py:128
+msgid "Mark as read, don't process read mails"
+msgstr ""
+
+#: paperless_mail/models.py:129
+msgid "Flag the mail, don't process flagged mails"
+msgstr ""
+
+#: paperless_mail/models.py:130
+msgid "Tag the mail with specified tag, don't process tagged mails"
+msgstr ""
+
+#: paperless_mail/models.py:133
+msgid "Use subject as title"
+msgstr ""
+
+#: paperless_mail/models.py:134
+msgid "Use attachment filename as title"
+msgstr ""
+
+#: paperless_mail/models.py:135
+msgid "Do not assign title from rule"
+msgstr ""
+
+#: paperless_mail/models.py:138
+msgid "Do not assign a correspondent"
+msgstr ""
+
+#: paperless_mail/models.py:139
+msgid "Use mail address"
+msgstr ""
+
+#: paperless_mail/models.py:140
+msgid "Use name (or mail address if not available)"
+msgstr ""
+
+#: paperless_mail/models.py:141
+msgid "Use correspondent selected below"
+msgstr ""
+
+#: paperless_mail/models.py:151
+msgid "account"
+msgstr ""
+
+#: paperless_mail/models.py:157 paperless_mail/models.py:318
+msgid "folder"
+msgstr ""
+
+#: paperless_mail/models.py:161
+msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server."
+msgstr ""
+
+#: paperless_mail/models.py:167
+msgid "filter from"
+msgstr ""
+
+#: paperless_mail/models.py:174
+msgid "filter to"
+msgstr ""
+
+#: paperless_mail/models.py:181
+msgid "filter subject"
+msgstr ""
+
+#: paperless_mail/models.py:188
+msgid "filter body"
+msgstr ""
+
+#: paperless_mail/models.py:195
+msgid "filter attachment filename inclusive"
+msgstr ""
+
+#: paperless_mail/models.py:207
+msgid "filter attachment filename exclusive"
+msgstr ""
+
+#: paperless_mail/models.py:212
+msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive."
+msgstr ""
+
+#: paperless_mail/models.py:219
+msgid "maximum age"
+msgstr ""
+
+#: paperless_mail/models.py:221
+msgid "Specified in days."
+msgstr ""
+
+#: paperless_mail/models.py:225
+msgid "attachment type"
+msgstr ""
+
+#: paperless_mail/models.py:229
+msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter."
+msgstr ""
+
+#: paperless_mail/models.py:235
+msgid "consumption scope"
+msgstr ""
+
+#: paperless_mail/models.py:241
+msgid "pdf layout"
+msgstr ""
+
+#: paperless_mail/models.py:247
+msgid "action"
+msgstr ""
+
+#: paperless_mail/models.py:253
+msgid "action parameter"
+msgstr ""
+
+#: paperless_mail/models.py:258
+msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots."
+msgstr ""
+
+#: paperless_mail/models.py:266
+msgid "assign title from"
+msgstr ""
+
+#: paperless_mail/models.py:286
+msgid "assign correspondent from"
+msgstr ""
+
+#: paperless_mail/models.py:300
+msgid "Assign the rule owner to documents"
+msgstr ""
+
+#: paperless_mail/models.py:326
+msgid "uid"
+msgstr ""
+
+#: paperless_mail/models.py:334
+msgid "subject"
+msgstr ""
+
+#: paperless_mail/models.py:342
+msgid "received"
+msgstr ""
+
+#: paperless_mail/models.py:349
+msgid "processed"
+msgstr ""
+
+#: paperless_mail/models.py:355
+msgid "status"
+msgstr ""
+
+#: paperless_mail/models.py:363
+msgid "error"
+msgstr ""
+
diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po
index 922e9fc9e..169a93962 100644
--- a/src/locale/ms_MY/LC_MESSAGES/django.po
+++ b/src/locale/ms_MY/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Malay\n"
"Language: ms_MY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po
index 28dd3ded0..633c2c3dc 100644
--- a/src/locale/nl_NL/LC_MESSAGES/django.po
+++ b/src/locale/nl_NL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Language: nl_NL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenten"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Waarde moet een geldige JSON zijn."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} is geen geldig aangepast veld."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Aangepast veld niet gevonden"
diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po
index 07844cdb1..4d6e0d80a 100644
--- a/src/locale/no_NO/LC_MESSAGES/django.po
+++ b/src/locale/no_NO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Verdien må være en gyldig JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Egendefinert felt ble ikke funnet"
diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po
index 91e3a3940..01f73664e 100644
--- a/src/locale/pl_PL/LC_MESSAGES/django.po
+++ b/src/locale/pl_PL/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-27 00:26\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Language: pl_PL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Wartość musi być prawidłowym JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Nieprawidłowa lista wyrażeń. Nie może być pusta."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Nieprawidłowy operator logiczny {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maksymalna liczba warunków zapytania została przekroczona."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie jest prawidłowym polem niestandardowym."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nie obsługuje wyrażenia zapytania {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Przekroczono maksymalną głębokość zagnieżdżenia."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Nie znaleziono pola niestandardowego"
@@ -136,11 +136,11 @@ msgstr "tagi"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "Nie można ustawić siebie jako nadrzędnego."
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr ""
+msgstr "Nie można ustawić nadrzędnego jako potomnego."
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -156,11 +156,11 @@ msgstr "ścieżka"
#: documents/models.py:152 documents/models.py:179
msgid "storage path"
-msgstr "ścieżka zapisu"
+msgstr "Ścieżka zapisu"
#: documents/models.py:153
msgid "storage paths"
-msgstr "ścieżki zapisu"
+msgstr "Ścieżki zapisu"
#: documents/models.py:160
msgid "Unencrypted"
@@ -204,7 +204,7 @@ msgstr "Suma kontrolna zarchiwizowanego dokumentu."
#: documents/models.py:229
msgid "page count"
-msgstr "liczba stron"
+msgstr "Liczba stron"
#: documents/models.py:236
msgid "The number of pages of the document."
@@ -245,7 +245,7 @@ msgstr "Aktualna nazwa pliku archiwum w pamięci"
#: documents/models.py:289
msgid "original filename"
-msgstr "oryginalna nazwa pliku"
+msgstr "Oryginalna nazwa pliku"
#: documents/models.py:295
msgid "The original name of the file when it was uploaded"
@@ -758,7 +758,7 @@ msgstr "Lista"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Pełny tekst"
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "posiada wskazane tag(i)"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "Zawiera wszystkie podane tagi"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "Nie zawiera żadnego z podanych tagów"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "posiada wskazany typ dokumentu"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "Nie posiada typów dokumentów"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,23 +878,23 @@ msgstr "posiada wskazanego nadawcę"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "nie posiada korespondenta(-ów)"
#: documents/models.py:1117
msgid "has this storage path"
-msgstr ""
+msgstr "ma tę ścieżkę zapisu"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "nie ma tej ścieżki/ścieżek zapisu"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "filtruj zapytanie pola niestandardowego"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "Niestandardowe wyrażenie zapytania pola zakodowane w formacie JSON."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1038,7 +1038,7 @@ msgstr "przypisz tytuł"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr ""
+msgstr "Przypisz tytuł dokumentu, musi być szablonem Jinja2, zobacz dokumentację."
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1225,20 +1225,20 @@ msgstr "Typ pliku %(type)s nie jest obsługiwany"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "Identyfikator pola niestandardowego musi być liczbą całkowitą: %(id)s"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "Pole niestandardowe z id %(id)s nie istnieje"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "Pola niestandardowe muszą być listą liczb całkowitych lub obiektem mapującym identyfikatory na wartości."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Niektóre niestandardowe pola nie istnieją lub zostały określone dwukrotnie."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
@@ -1473,21 +1473,21 @@ msgstr "Na koniec należy wypełnić poniższy formularz:"
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr ""
+msgstr "Nie można przeanalizować URI {value}, brak schematu"
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr ""
+msgstr "Nie można przeanalizować URI {value}, brak lokalizacji sieciowej lub ścieżki"
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr ""
+msgstr "Schemat URI '{parts.scheme}' jest niedozwolony. Dozwolone schematy: {', '.join(allowed_schemes)}"
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr ""
+msgstr "Nie można przetworzyć URI {value}"
#: paperless/apps.py:11
msgid "Paperless"
@@ -1815,7 +1815,7 @@ msgstr "Ukraiński"
#: paperless/settings.py:806
msgid "Vietnamese"
-msgstr ""
+msgstr "Wietnamski"
#: paperless/settings.py:807
msgid "Chinese Simplified"
diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po
index 61bfa5125..d5f47bd0f 100644
--- a/src/locale/pt_BR/LC_MESSAGES/django.po
+++ b/src/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "O valor deve ser um JSON válido."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválida"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Deve estar não vazia."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Número máximo de condições de consulta excedido."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
-msgstr "{data_type} não suporta a consulta expr {expr!r}."
+msgstr "{data_type} Não suporta a consulta expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profundidade máxima do aninhamento excedida."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Campo personalizado não encontrado"
@@ -450,7 +450,7 @@ msgstr "pesquisa de texto completo"
#: documents/models.py:526
msgid "more like this"
-msgstr "Mais como este"
+msgstr "mais como este"
#: documents/models.py:527
msgid "has tags in"
@@ -859,11 +859,11 @@ msgstr "Possui estas etiquetas"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "possui toda(s) esta(s) etiqueta(s)"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "não possui esta(s) etiqueta(s)"
#: documents/models.py:1087
msgid "has this document type"
@@ -871,7 +871,7 @@ msgstr "Possui este tipo de documento"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "não possui este(s) tipo(s) de documento"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -879,7 +879,7 @@ msgstr "Possui este correspondente"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "não possui este(s) correspondente(s)"
#: documents/models.py:1117
msgid "has this storage path"
@@ -887,15 +887,15 @@ msgstr "possui este caminho de armazenamento"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "não possui este(s) caminho(s) de armazenamento"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "Filtrar consulta de campo personalizado"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "Expressão de consulta de campo personalizado codificada em JSON."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1270,7 +1270,7 @@ msgstr "Olá de %(site_name)s!"
#, python-format
msgid "Thank you for using %(site_name)s!\n"
"%(site_domain)s"
-msgstr "Obrigado por usar %(site_name)s!\n"
+msgstr "Obrigado por usar %(site_name)s!\n"
"%(site_domain)s"
#: documents/templates/account/login.html:5
@@ -1313,7 +1313,7 @@ msgstr "ou conecte-se com"
#: documents/templates/account/password_reset.html:5
msgid "Paperless-ngx reset password request"
-msgstr "Redefinição de senha Paperless-ngx"
+msgstr "Solicitação de redefinição de senha Paperless-ngx"
#: documents/templates/account/password_reset.html:9
msgid "Enter your email address below, and we'll email instructions for setting a new one."
diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po
index d6fb4c833..4af8699b6 100644
--- a/src/locale/pt_PT/LC_MESSAGES/django.po
+++ b/src/locale/pt_PT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "O valor deve ser JSON válido."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválido"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Não deve estar vazia."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "O número máximo de condições de consulta foi excedido."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} não aceita a expressão de consulta {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Campo personalizado não encontrado"
diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po
index 5e09d9f60..ff3752cde 100644
--- a/src/locale/ro_RO/LC_MESSAGES/django.po
+++ b/src/locale/ro_RO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Language: ro_RO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documente"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po
index 0ed465101..fa4ced9c9 100644
--- a/src/locale/ru_RU/LC_MESSAGES/django.po
+++ b/src/locale/ru_RU/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документы"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Значение должно быть корректным JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Неверное выражение запроса пользовательского поля"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Недопустимый список выражений. Не может быть пустым."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Недопустимый логический оператор {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Превышено максимальное количество условий запроса."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не является допустимым пользовательским полем."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддерживает запрос {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Превышена максимальная глубина вложения."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Пользовательское поле не найдено"
@@ -758,7 +758,7 @@ msgstr "Выбрать"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Длинный текст"
#: documents/models.py:807
msgid "data type"
diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po
index 4e273c8bd..eaee3a3e9 100644
--- a/src/locale/sk_SK/LC_MESSAGES/django.po
+++ b/src/locale/sk_SK/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"Language: sk_SK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Hodnota musí byť vo validnom formáte JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz požiadavky na vlastné pole"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Prekročili ste maximálny počet podmienok požiadavky."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie je platné vlastné pole."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz požiadavky {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Bola prekročená maximálna hĺbka vetvenia."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Vlastné pole nebolo nájdené"
diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po
index 69f6183f8..77f579287 100644
--- a/src/locale/sl_SI/LC_MESSAGES/django.po
+++ b/src/locale/sl_SI/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-28 12:15\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"Language: sl_SI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Vrednost mora biti veljaven JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neveljaven izraz poizvedbe po polju po meri"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neveljaven seznam izrazov. Ne sme biti prazen."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neveljaven logični operator {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Preseženo je bilo največje dovoljeno število pogojev poizvedbe."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ni veljavno polje po meri."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podpira izraza poizvedbe {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Presežena je bila največja globina gnezdenja."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Polja po meri ni bilo mogoče najti"
diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po
index 8255b4f0e..7d156b01b 100644
--- a/src/locale/sr_CS/LC_MESSAGES/django.po
+++ b/src/locale/sr_CS/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Serbian (Latin)\n"
"Language: sr_CS\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenta"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Vrednost mora da bude važeći JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Nevažeći izraz upita prilagođen polja"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Nevažeća lista izraza. Ne sme biti prazna."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Nevažeći logični operator {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Premašen je maksimalni broj uslova u upitu."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nije validno prilagođeno polje."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podržava izraz u upitu {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Premašena je maksimalna dubina grananja."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Nije pronađeno prilagođeno polje"
diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po
index dd7fbf58b..3585184eb 100644
--- a/src/locale/sv_SE/LC_MESSAGES/django.po
+++ b/src/locale/sv_SE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokument"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Värdet måste vara giltigt JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ogiltigt sökordsuttryck för anpassade fält"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ogiltig uttryckslista. Får inte vara tom."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ogiltig logisk operator {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximalt antal frågevillkor överskrids."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} är inte ett giltigt anpassat fält."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} stöder inte frågan expr {expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximalt antal nästlade nivåer överskrids."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Anpassat fält hittades inte"
diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po
index 84aed6222..d1a3323a8 100644
--- a/src/locale/th_TH/LC_MESSAGES/django.po
+++ b/src/locale/th_TH/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Language: th_TH\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "เอกสาร"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง"
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง"
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด"
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง"
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}"
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด"
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "ไม่พบฟิลด์ที่กำหนด"
@@ -942,7 +942,7 @@ msgstr ""
#: documents/models.py:1187
msgid "email subject"
-msgstr ""
+msgstr "หัวเรื่องของอีเมล"
#: documents/models.py:1191
msgid "The subject of the email, can include some placeholders, see documentation."
@@ -950,7 +950,7 @@ msgstr ""
#: documents/models.py:1197
msgid "email body"
-msgstr ""
+msgstr "เนื้อหาอีเมล"
#: documents/models.py:1200
msgid "The body (message) of the email, can include some placeholders, see documentation."
@@ -958,7 +958,7 @@ msgstr ""
#: documents/models.py:1206
msgid "emails to"
-msgstr ""
+msgstr "อีเมล์ถึง"
#: documents/models.py:1209
msgid "The destination email addresses, comma separated."
diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po
index 7700f2927..c9466ab92 100644
--- a/src/locale/tr_TR/LC_MESSAGES/django.po
+++ b/src/locale/tr_TR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-25 12:16\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Belgeler"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Değer geçerli bir JSON olmalıdır."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Geçersiz özel alan sorgu ifadesi"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Geçersiz ifade listesi. Boş olmamalıdır."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Geçersiz mantıksal işleç {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "En çok sorgu koşulu sayısı aşıldı."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} geçerli bir özel alan değil."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}, {expr!r} sorgu ifadesini desteklemiyor."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "En çok iç içe geçme izni aşıldı."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Özel alan bulunamadı"
@@ -136,11 +136,11 @@ msgstr "etiketler"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "Kendinizi bir üst düğüm olarak seçemezsiniz."
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr ""
+msgstr "Bir üst düğüm alt düğüm olarak seçilemez."
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -758,7 +758,7 @@ msgstr "Seç"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Uzun Metin"
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "bu etiket(ler) e sahiptir"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "bu etiket veya etiketlerine sahip"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "bu etiket veya etiketlerine sahip değil"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "bu doküman tipindedir"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "bu belge tür veya türlerine sahip değil"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,23 +878,23 @@ msgstr "bu muhatap var"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "bu muhatablara sahip değil"
#: documents/models.py:1117
msgid "has this storage path"
-msgstr ""
+msgstr "bu depolama yoluna sahip"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "bu depolama dizin veya dizinleri mevcut değil"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "özel alanlara göre filtrele"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "JSON olarak verilmiş özel alan sorgu ifadesi."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1038,7 +1038,7 @@ msgstr "başlık ata"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr ""
+msgstr "Dökuman bașlıkları, Jinja2 taslağı olmalıdır, bakınız."
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1225,20 +1225,20 @@ msgstr "Dosya türü %(type)s desteklenmiyor"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr ""
+msgstr "%(id)s özel alan numarası tam sayı olmalıdır"
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr ""
+msgstr "%(id)s numaralı özel alan mevcut değil"
#: documents/serialisers.py:1873 documents/serialisers.py:1883
msgid "Custom fields must be a list of integers or an object mapping ids to values."
-msgstr ""
+msgstr "Özel alanlar bir tam sayı olarak veya bir nesne haritası numaraları olmalıdır."
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr ""
+msgstr "Bazı õzel alan numaraları mevcut değil yada iki kez tanımlanmıș."
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po
index 28ab14c76..8aea4838c 100644
--- a/src/locale/uk_UA/LC_MESSAGES/django.po
+++ b/src/locale/uk_UA/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-23 12:14\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Language: uk_UA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Значення має бути коректним JSON."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr ""
diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po
index b545e9a4d..160ccc6d2 100644
--- a/src/locale/vi_VN/LC_MESSAGES/django.po
+++ b/src/locale/vi_VN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Language: vi_VN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Tài liệu"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Giá trị phải là JSON hợp lệ."
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Biểu thức truy vấn trường tùy chỉnh không hợp lệ"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Danh sách biểu thức không hợp lệ. Phải không rỗng."
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Toán tử lô-gic không hợp lệ {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Đã vượt quá số điều kiện truy vấn tối đa."
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} không phải là trường tùy chỉnh hợp lệ."
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} không hỗ trợ expr truy vấn{expr!r}."
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Đã vượt quá độ sâu lồng nhau tối đa."
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Không tìm thấy trường tùy chỉnh"
@@ -136,7 +136,7 @@ msgstr "thẻ"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr ""
+msgstr "Không thể tự đặt thành thư mục gốc"
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
@@ -758,7 +758,7 @@ msgstr "Chọn"
#: documents/models.py:795
msgid "Long Text"
-msgstr ""
+msgstr "Văn bản dài"
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "có những thẻ này"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "có tất cả thẻ này"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "không có các thẻ này"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "có loại tài liệu này"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "không có các loại tài liệu này"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,15 +878,15 @@ msgstr "có phóng viên này"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "không có các biên tập viên này"
#: documents/models.py:1117
msgid "has this storage path"
-msgstr ""
+msgstr "có đường dẫn lưu trữ này"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "không có các đường dẫn lưu trữ này"
#: documents/models.py:1128
msgid "filter custom field query"
diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po
index 330487011..88977f806 100644
--- a/src/locale/zh_CN/LC_MESSAGES/django.po
+++ b/src/locale/zh_CN/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-14 16:11\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文档"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "值必须是有效的 JSON 格式。"
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "无效的自定义字段查询表达式"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "无效的表达式列表。必须不为空。"
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "无效的逻辑运算符 {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "超出查询条件的最大数量。"
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是一个有效的自定义字段。"
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支持查询表达式 {expr!r}。"
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超出最大嵌套深度。"
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Custom field not found"
diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po
index c32ae563c..d3b895dde 100644
--- a/src/locale/zh_TW/LC_MESSAGES/django.po
+++ b/src/locale/zh_TW/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-10-22 18:15+0000\n"
-"PO-Revision-Date: 2025-10-22 18:18\n"
+"POT-Creation-Date: 2025-11-14 16:09+0000\n"
+"PO-Revision-Date: 2025-11-20 12:15\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Language: zh_TW\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文件"
-#: documents/filters.py:386
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "參數值必須是有效的 JSON。"
-#: documents/filters.py:405
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "無效的自訂欄位查詢表達式"
-#: documents/filters.py:415
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "無效的表達式列表,不能為空。"
-#: documents/filters.py:436
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "無效的邏輯運算符 {op!r}"
-#: documents/filters.py:450
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "超過查詢條件的最大數量。"
-#: documents/filters.py:515
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是有效的自訂欄位。"
-#: documents/filters.py:552
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支援查詢表達式 {expr!r}。"
-#: documents/filters.py:660 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超過最大巢狀深度。"
-#: documents/filters.py:845
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "找不到自訂欄位"
@@ -858,11 +858,11 @@ msgstr "具有這些標籤"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr ""
+msgstr "標籤符合"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr ""
+msgstr "標籤不包含"
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "具有此文件類型"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr ""
+msgstr "文件類型不包含"
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "具有此關聯方"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr ""
+msgstr "關聯方不包含"
#: documents/models.py:1117
msgid "has this storage path"
@@ -886,15 +886,15 @@ msgstr "使用此儲存路徑"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr ""
+msgstr "儲存路徑不包含"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr ""
+msgstr "篩選自訂欄位查詢"
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr ""
+msgstr "JSON-encoded 的自訂欄位查詢表達式。"
#: documents/models.py:1135
msgid "schedule offset days"
diff --git a/src/paperless/adapter.py b/src/paperless/adapter.py
index f8517a3aa..a4506275e 100644
--- a/src/paperless/adapter.py
+++ b/src/paperless/adapter.py
@@ -137,3 +137,25 @@ class CustomSocialAccountAdapter(DefaultSocialAccountAdapter):
user.save()
handle_social_account_updated(None, request, sociallogin)
return user
+
+ def on_authentication_error(
+ self,
+ request,
+ provider,
+ error=None,
+ exception=None,
+ extra_context=None,
+ ):
+ """
+ Just log errors and pass them along.
+ """
+ logger.warning(
+ f"Social authentication error for provider `{provider!s}`: {error!s} ({exception!s})",
+ )
+ return super().on_authentication_error(
+ request,
+ provider,
+ error,
+ exception,
+ extra_context,
+ )
diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py
index 754a3c594..97b84fd14 100644
--- a/src/paperless/serialisers.py
+++ b/src/paperless/serialisers.py
@@ -9,6 +9,7 @@ from allauth.socialaccount.models import SocialApp
from django.contrib.auth.models import Group
from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
+from django.contrib.auth.password_validation import validate_password
from rest_framework import serializers
from rest_framework.authtoken.serializers import AuthTokenSerializer
@@ -19,6 +20,23 @@ from paperless_mail.serialisers import ObfuscatedPasswordField
logger = logging.getLogger("paperless.settings")
+class PasswordValidationMixin:
+ def _has_real_password(self, value: str | None) -> bool:
+ return bool(value) and value.replace("*", "") != ""
+
+ def validate_password(self, value: str) -> str:
+ if not self._has_real_password(value):
+ return value
+
+ request = self.context.get("request") if hasattr(self, "context") else None
+ user = self.instance or (
+ request.user if request and hasattr(request, "user") else None
+ )
+ validate_password(value, user) # raise ValidationError if invalid
+
+ return value
+
+
class PaperlessAuthTokenSerializer(AuthTokenSerializer):
code = serializers.CharField(
label="MFA Code",
@@ -49,7 +67,7 @@ class PaperlessAuthTokenSerializer(AuthTokenSerializer):
return attrs
-class UserSerializer(serializers.ModelSerializer):
+class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer):
password = ObfuscatedPasswordField(required=False)
user_permissions = serializers.SlugRelatedField(
many=True,
@@ -87,11 +105,11 @@ class UserSerializer(serializers.ModelSerializer):
return obj.get_group_permissions()
def update(self, instance, validated_data):
- if "password" in validated_data:
- if len(validated_data.get("password").replace("*", "")) > 0:
- instance.set_password(validated_data.get("password"))
- instance.save()
- validated_data.pop("password")
+ password = validated_data.pop("password", None)
+ if self._has_real_password(password):
+ instance.set_password(password)
+ instance.save()
+
super().update(instance, validated_data)
return instance
@@ -102,12 +120,7 @@ class UserSerializer(serializers.ModelSerializer):
user_permissions = None
if "user_permissions" in validated_data:
user_permissions = validated_data.pop("user_permissions")
- password = None
- if (
- "password" in validated_data
- and len(validated_data.get("password").replace("*", "")) > 0
- ):
- password = validated_data.pop("password")
+ password = validated_data.pop("password", None)
user = User.objects.create(**validated_data)
# set groups
if groups:
@@ -116,7 +129,7 @@ class UserSerializer(serializers.ModelSerializer):
if user_permissions:
user.user_permissions.set(user_permissions)
# set password
- if password:
+ if self._has_real_password(password):
user.set_password(password)
user.save()
return user
@@ -156,7 +169,7 @@ class SocialAccountSerializer(serializers.ModelSerializer):
return "Unknown App"
-class ProfileSerializer(serializers.ModelSerializer):
+class ProfileSerializer(PasswordValidationMixin, serializers.ModelSerializer):
email = serializers.EmailField(allow_blank=True, required=False)
password = ObfuscatedPasswordField(required=False, allow_null=False)
auth_token = serializers.SlugRelatedField(read_only=True, slug_field="key")
diff --git a/src/paperless/signals.py b/src/paperless/signals.py
index a173ccc2e..cfad29dbd 100644
--- a/src/paperless/signals.py
+++ b/src/paperless/signals.py
@@ -38,10 +38,19 @@ def handle_social_account_updated(sender, request, sociallogin, **kwargs):
"""
from django.contrib.auth.models import Group
- social_account_groups = sociallogin.account.extra_data.get(
+ extra_data = sociallogin.account.extra_data or {}
+ social_account_groups = extra_data.get(
"groups",
[],
- ) # None if not found
+ ) # pre-allauth 65.11.0 structure
+
+ if not social_account_groups:
+ # allauth 65.11.0+ nests claims under `userinfo`/`id_token`
+ social_account_groups = (
+ extra_data.get("userinfo", {}).get("groups")
+ or extra_data.get("id_token", {}).get("groups")
+ or []
+ )
if settings.SOCIAL_ACCOUNT_SYNC_GROUPS and social_account_groups is not None:
groups = Group.objects.filter(name__in=social_account_groups)
logger.debug(
diff --git a/src/paperless/tests/test_adapter.py b/src/paperless/tests/test_adapter.py
index b87c47096..37b8aaa3b 100644
--- a/src/paperless/tests/test_adapter.py
+++ b/src/paperless/tests/test_adapter.py
@@ -54,8 +54,8 @@ class TestCustomAccountAdapter(TestCase):
# False because request host is not in allowed hosts
self.assertFalse(adapter.is_safe_url(url))
- @mock.patch("allauth.core.ratelimit._consume_rate", return_value=True)
- def test_pre_authenticate(self, mock_consume_rate):
+ @mock.patch("allauth.core.internal.ratelimit.consume", return_value=True)
+ def test_pre_authenticate(self, mock_consume):
adapter = get_adapter()
request = HttpRequest()
request.get_host = mock.Mock(return_value="example.com")
@@ -167,3 +167,17 @@ class TestCustomSocialAccountAdapter(TestCase):
self.assertEqual(user.groups.count(), 1)
self.assertTrue(user.groups.filter(name="group1").exists())
self.assertFalse(user.groups.filter(name="group2").exists())
+
+ def test_error_logged_on_authentication_error(self):
+ adapter = get_social_adapter()
+ request = HttpRequest()
+ with self.assertLogs("paperless.auth", level="INFO") as log_cm:
+ adapter.on_authentication_error(
+ request,
+ provider="test-provider",
+ error="Error",
+ exception="Test authentication error",
+ )
+ self.assertTrue(
+ any("Test authentication error" in message for message in log_cm.output),
+ )
diff --git a/src/paperless/tests/test_signals.py b/src/paperless/tests/test_signals.py
index a77580b7b..a21f3b660 100644
--- a/src/paperless/tests/test_signals.py
+++ b/src/paperless/tests/test_signals.py
@@ -192,6 +192,68 @@ class TestSyncSocialLoginGroups(TestCase):
)
self.assertEqual(list(user.groups.all()), [])
+ @override_settings(SOCIAL_ACCOUNT_SYNC_GROUPS=True)
+ def test_userinfo_groups(self):
+ """
+ GIVEN:
+ - Enabled group syncing, and `groups` nested under `userinfo`
+ WHEN:
+ - The social login is updated via signal after login
+ THEN:
+ - The user's groups are updated using `userinfo.groups`
+ """
+ group = Group.objects.create(name="group1")
+ user = User.objects.create_user(username="testuser")
+ sociallogin = Mock(
+ user=user,
+ account=Mock(
+ extra_data={
+ "userinfo": {
+ "groups": ["group1"],
+ },
+ },
+ ),
+ )
+
+ handle_social_account_updated(
+ sender=None,
+ request=HttpRequest(),
+ sociallogin=sociallogin,
+ )
+
+ self.assertEqual(list(user.groups.all()), [group])
+
+ @override_settings(SOCIAL_ACCOUNT_SYNC_GROUPS=True)
+ def test_id_token_groups_fallback(self):
+ """
+ GIVEN:
+ - Enabled group syncing, and `groups` only under `id_token`
+ WHEN:
+ - The social login is updated via signal after login
+ THEN:
+ - The user's groups are updated using `id_token.groups`
+ """
+ group = Group.objects.create(name="group1")
+ user = User.objects.create_user(username="testuser")
+ sociallogin = Mock(
+ user=user,
+ account=Mock(
+ extra_data={
+ "id_token": {
+ "groups": ["group1"],
+ },
+ },
+ ),
+ )
+
+ handle_social_account_updated(
+ sender=None,
+ request=HttpRequest(),
+ sociallogin=sociallogin,
+ )
+
+ self.assertEqual(list(user.groups.all()), [group])
+
class TestUserGroupDeletionCleanup(TestCase):
"""
diff --git a/src/paperless/version.py b/src/paperless/version.py
index 4eae46a66..2d0b1f4f6 100644
--- a/src/paperless/version.py
+++ b/src/paperless/version.py
@@ -1,6 +1,6 @@
from typing import Final
-__version__: Final[tuple[int, int, int]] = (2, 19, 2)
+__version__: Final[tuple[int, int, int]] = (2, 20, 1)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
diff --git a/src/paperless/views.py b/src/paperless/views.py
index fc5bb5463..e79c0e668 100644
--- a/src/paperless/views.py
+++ b/src/paperless/views.py
@@ -125,6 +125,10 @@ class UserViewSet(ModelViewSet):
def update(self, request, *args, **kwargs):
user_to_update: User = self.get_object()
+ if not request.user.is_superuser and user_to_update.is_superuser:
+ return HttpResponseForbidden(
+ "Superusers can only be modified by other superusers",
+ )
if (
not request.user.is_superuser
and request.data.get("is_superuser") is not None
@@ -193,10 +197,10 @@ class ProfileView(GenericAPIView):
serializer.is_valid(raise_exception=True)
user = self.request.user if hasattr(self.request, "user") else None
- if len(serializer.validated_data.get("password").replace("*", "")) > 0:
- user.set_password(serializer.validated_data.get("password"))
+ password = serializer.validated_data.pop("password", None)
+ if password and password.replace("*", ""):
+ user.set_password(password)
user.save()
- serializer.validated_data.pop("password")
for key, value in serializer.validated_data.items():
setattr(user, key, value)
diff --git a/src/paperless_mail/oauth.py b/src/paperless_mail/oauth.py
index f2050451b..08b5d9647 100644
--- a/src/paperless_mail/oauth.py
+++ b/src/paperless_mail/oauth.py
@@ -103,6 +103,9 @@ class PaperlessMailOAuth2Manager:
refresh_token=account.refresh_token,
),
)
+ if "refresh_token" in result:
+ # Outlook returns a new refresh token on refresh, Gmail does not
+ account.refresh_token = result["refresh_token"]
account.password = result["access_token"]
account.expiration = timezone.now() + timedelta(
seconds=result["expires_in"],
diff --git a/src/paperless_mail/templates/package-lock.json b/src/paperless_mail/templates/package-lock.json
index e6c2db15a..38817d673 100644
--- a/src/paperless_mail/templates/package-lock.json
+++ b/src/paperless_mail/templates/package-lock.json
@@ -429,23 +429,21 @@
}
},
"node_modules/glob": {
- "version": "10.4.1",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz",
- "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==",
+ "version": "10.5.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
+ "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
"dev": true,
"dependencies": {
"foreground-child": "^3.1.0",
"jackspeak": "^3.1.2",
"minimatch": "^9.0.4",
"minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
"path-scurry": "^1.11.1"
},
"bin": {
"glob": "dist/esm/bin.mjs"
},
- "engines": {
- "node": ">=16 || 14 >=14.18"
- },
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
@@ -696,6 +694,12 @@
"node": ">= 6"
}
},
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "dev": true
+ },
"node_modules/path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
@@ -1694,15 +1698,16 @@
"dev": true
},
"glob": {
- "version": "10.4.1",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz",
- "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==",
+ "version": "10.5.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
+ "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
"dev": true,
"requires": {
"foreground-child": "^3.1.0",
"jackspeak": "^3.1.2",
"minimatch": "^9.0.4",
"minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
"path-scurry": "^1.11.1"
}
},
@@ -1875,6 +1880,12 @@
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
"dev": true
},
+ "package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "dev": true
+ },
"path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
diff --git a/src/paperless_mail/tests/samples/html.eml b/src/paperless_mail/tests/samples/html.eml
index 97747ceab..aaac68cc4 100644
--- a/src/paperless_mail/tests/samples/html.eml
+++ b/src/paperless_mail/tests/samples/html.eml
@@ -55,7 +55,7 @@ Content-Transfer-Encoding: 7bit
Some Text
-
+
and an embedded image.
diff --git a/src/paperless_mail/tests/samples/sample.html b/src/paperless_mail/tests/samples/sample.html
index 584cd5d64..c1fd52d43 100644
--- a/src/paperless_mail/tests/samples/sample.html
+++ b/src/paperless_mail/tests/samples/sample.html
@@ -6,7 +6,7 @@
Some Text
-
+
and an embedded image.
diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py
index e1febb1e5..fd052cc26 100644
--- a/src/paperless_mail/tests/test_parsers_live.py
+++ b/src/paperless_mail/tests/test_parsers_live.py
@@ -67,10 +67,10 @@ class TestUrlCanary:
whether this image stays online forever, so here we check if we can detect if is not
available anymore.
"""
+ resp = httpx.get(
+ "https://docs.paperless-ngx.com/assets/non-existent.png",
+ )
with pytest.raises(httpx.HTTPStatusError) as exec_info:
- resp = httpx.get(
- "https://upload.wikimedia.org/wikipedia/en/f/f7/nonexistent.png",
- )
resp.raise_for_status()
assert exec_info.value.response.status_code == httpx.codes.NOT_FOUND
@@ -90,7 +90,9 @@ class TestUrlCanary:
"""
# Now check the URL used in samples/sample.html
- resp = httpx.get("https://upload.wikimedia.org/wikipedia/en/f/f7/RickRoll.png")
+ resp = httpx.get(
+ "https://docs.paperless-ngx.com/assets/logo_full_white.svg",
+ )
resp.raise_for_status()
diff --git a/uv.lock b/uv.lock
index d4d5ee6d1..ff0bb6b5b 100644
--- a/uv.lock
+++ b/uv.lock
@@ -129,14 +129,14 @@ wheels = [
[[package]]
name = "bleach"
-version = "6.2.0"
+version = "6.3.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "webencodings", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083, upload-time = "2024-10-29T18:30:40.477Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406, upload-time = "2024-10-29T18:30:38.186Z" },
+ { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" },
]
[[package]]
@@ -676,26 +676,26 @@ wheels = [
[[package]]
name = "django"
-version = "5.2.6"
+version = "5.2.7"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "sqlparse", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/4c/8c/2a21594337250a171d45dda926caa96309d5136becd1f48017247f9cdea0/django-5.2.6.tar.gz", hash = "sha256:da5e00372763193d73cecbf71084a3848458cecf4cee36b9a1e8d318d114a87b", size = 10858861, upload-time = "2025-09-03T13:04:03.23Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/b1/96/bd84e2bb997994de8bcda47ae4560991084e86536541d7214393880f01a8/django-5.2.7.tar.gz", hash = "sha256:e0f6f12e2551b1716a95a63a1366ca91bbcd7be059862c1b18f989b1da356cdd", size = 10865812, upload-time = "2025-10-01T14:22:12.081Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/f5/af/6593f6d21404e842007b40fdeb81e73c20b6649b82d020bb0801b270174c/django-5.2.6-py3-none-any.whl", hash = "sha256:60549579b1174a304b77e24a93d8d9fafe6b6c03ac16311f3e25918ea5a20058", size = 8303111, upload-time = "2025-09-03T13:03:47.808Z" },
+ { url = "https://files.pythonhosted.org/packages/8f/ef/81f3372b5dd35d8d354321155d1a38894b2b766f576d0abffac4d8ae78d9/django-5.2.7-py3-none-any.whl", hash = "sha256:59a13a6515f787dec9d97a0438cd2efac78c8aca1c80025244b0fe507fe0754b", size = 8307145, upload-time = "2025-10-01T14:22:49.476Z" },
]
[[package]]
name = "django-allauth"
-version = "65.4.1"
+version = "65.12.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/b1/e7/b3232c27da9f43e3db72d16addd90891ee233fa058ddd0588bafcded2ea7/django_allauth-65.4.1.tar.gz", hash = "sha256:60b32aef7dbbcc213319aa4fd8f570e985266ea1162ae6ef7a26a24efca85c8c", size = 1558220, upload-time = "2025-02-07T09:35:18.359Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/52/94/75d7f8c59e061d1b66a6d917b287817fe02d2671c9e6376a4ddfb3954989/django_allauth-65.12.1.tar.gz", hash = "sha256:662666ff2d5c71766f66b1629ac7345c30796813221184e13e11ed7460940c6a", size = 1967971, upload-time = "2025-10-16T16:39:58.342Z" }
[package.optional-dependencies]
mfa = [
@@ -703,22 +703,22 @@ mfa = [
{ name = "qrcode", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
socialaccount = [
+ { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "pyjwt", extra = ["crypto"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
- { name = "requests-oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
[[package]]
name = "django-auditlog"
-version = "3.2.1"
+version = "3.3.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "python-dateutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/e1/46/9da1d94493832fa18d2f6324a76d387fa232001593866987a96047709f4e/django_auditlog-3.2.1.tar.gz", hash = "sha256:63a4c9f7793e94eed804bc31a04d9b0b58244b1d280e2ed273c8b406bff1f779", size = 72926, upload-time = "2025-07-03T20:08:17.734Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/37/d8/ddd1c653ffb7ed1984596420982e32a0b163a0be316721a801a54dcbf016/django_auditlog-3.3.0.tar.gz", hash = "sha256:01331a0e7bb1a8ff7573311b486c88f3d0c431c388f5a1e4a9b6b26911dd79b8", size = 85941, upload-time = "2025-10-02T17:16:27.591Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/a7/06/67296d050a72dcd76f57f220df621cb27e5b9282ba7ad0f5f74870dce241/django_auditlog-3.2.1-py3-none-any.whl", hash = "sha256:99603ca9d015f7e9b062b1c34f3e0826a3ce6ae6e5950c81bb7e663f7802a899", size = 38330, upload-time = "2025-07-03T20:07:51.735Z" },
+ { url = "https://files.pythonhosted.org/packages/f3/bc/6e1b503d1755ab09cff6480cb088def073f1303165ab59b1a09247a2e756/django_auditlog-3.3.0-py3-none-any.whl", hash = "sha256:ab0f0f556a7107ac01c8fa87137bdfbb2b6f0debf70f7753169d9a40673d2636", size = 39676, upload-time = "2025-10-02T17:15:42.922Z" },
]
[[package]]
@@ -787,14 +787,14 @@ wheels = [
[[package]]
name = "django-filter"
-version = "25.1"
+version = "25.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/b5/40/c702a6fe8cccac9bf426b55724ebdf57d10a132bae80a17691d0cf0b9bac/django_filter-25.1.tar.gz", hash = "sha256:1ec9eef48fa8da1c0ac9b411744b16c3f4c31176c867886e4c48da369c407153", size = 143021, upload-time = "2025-02-14T16:30:53.238Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/2c/e4/465d2699cd388c0005fb8d6ae6709f239917c6d8790ac35719676fffdcf3/django_filter-25.2.tar.gz", hash = "sha256:760e984a931f4468d096f5541787efb8998c61217b73006163bf2f9523fe8f23", size = 143818, upload-time = "2025-10-05T09:51:31.521Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/07/a6/70dcd68537c434ba7cb9277d403c5c829caf04f35baf5eb9458be251e382/django_filter-25.1-py3-none-any.whl", hash = "sha256:4fa48677cf5857b9b1347fed23e355ea792464e0fe07244d1fdfb8a806215b80", size = 94114, upload-time = "2025-02-14T16:30:50.435Z" },
+ { url = "https://files.pythonhosted.org/packages/c1/40/6a02495c5658beb1f31eb09952d8aa12ef3c2a66342331ce3a35f7132439/django_filter-25.2-py3-none-any.whl", hash = "sha256:9c0f8609057309bba611062fe1b720b4a873652541192d232dd28970383633e3", size = 94145, upload-time = "2025-10-05T09:51:29.728Z" },
]
[[package]]
@@ -959,14 +959,14 @@ wheels = [
[[package]]
name = "drf-spectacular-sidecar"
-version = "2025.9.1"
+version = "2025.10.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/51/e2/85a0b8dbed8631165a6b49b2aee57636da8e4e710c444566636ffd972a7b/drf_spectacular_sidecar-2025.9.1.tar.gz", hash = "sha256:da2aa45da48fff76de7a1e357b84d1eb0b9df40ca89ec19d5fe94ad1037bb3c8", size = 2420902, upload-time = "2025-09-01T11:23:24.156Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/c3/e4/99cd1b1c8c69788bd6cb6a2459674f8c75728e79df23ac7beddd094bf805/drf_spectacular_sidecar-2025.10.1.tar.gz", hash = "sha256:506a5a21ce1ad7211c28acb4e2112e213f6dc095a2052ee6ed6db1ffe8eb5a7b", size = 2420998, upload-time = "2025-10-01T11:23:27.092Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/96/24/db59146ba89491fe1d44ca8aef239c94bf3c7fd41523976090f099430312/drf_spectacular_sidecar-2025.9.1-py3-none-any.whl", hash = "sha256:8e80625209b8a23ff27616db305b9ab71c2e2d1069dacd99720a9c11e429af50", size = 2440255, upload-time = "2025-09-01T11:23:22.822Z" },
+ { url = "https://files.pythonhosted.org/packages/ab/87/70c67391e4ce68715d4dfae8dd33caeda2552af22f436ba55b8867a040fe/drf_spectacular_sidecar-2025.10.1-py3-none-any.whl", hash = "sha256:f1de343184d1a938179ce363d318258fe1e5f02f2f774625272364835f1c42bd", size = 2440241, upload-time = "2025-10-01T11:23:25.743Z" },
]
[[package]]
@@ -1783,19 +1783,19 @@ wheels = [
[[package]]
name = "mkdocs-glightbox"
-version = "0.5.1"
+version = "0.5.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "selectolax", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/8b/72/c03e9d8d2dbe098d7ce5d51309933a1d3aea268965ed097ab16f4b54de15/mkdocs_glightbox-0.5.1.tar.gz", hash = "sha256:7d78a5b045f2479f61b0bbb17742ba701755c56b013e70ac189c9d87a91e80bf", size = 480028, upload-time = "2025-09-04T13:10:29.679Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/8d/26/c793459622da8e31f954c6f5fb51e8f098143fdfc147b1e3c25bf686f4aa/mkdocs_glightbox-0.5.2.tar.gz", hash = "sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac", size = 510586, upload-time = "2025-10-23T14:55:18.909Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/30/cf/e9a0ce9da269746906fdc595c030f6df66793dad1487abd1699af2ba44f1/mkdocs_glightbox-0.5.1-py3-none-any.whl", hash = "sha256:f47af0daff164edf8d36e553338425be3aab6e34b987d9cbbc2ae7819a98cb01", size = 26431, upload-time = "2025-09-04T13:10:27.933Z" },
+ { url = "https://files.pythonhosted.org/packages/4e/ca/03624e017e5ee2d7ce8a08d89f81c1e535eb3c30d7b2dc4a435ea3fbbeae/mkdocs_glightbox-0.5.2-py3-none-any.whl", hash = "sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e", size = 26458, upload-time = "2025-10-23T14:55:17.43Z" },
]
[[package]]
name = "mkdocs-material"
-version = "9.6.22"
+version = "9.7.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -1810,9 +1810,9 @@ dependencies = [
{ name = "pymdown-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/5f/5d/317e37b6c43325cb376a1d6439df9cc743b8ee41c84603c2faf7286afc82/mkdocs_material-9.6.22.tar.gz", hash = "sha256:87c158b0642e1ada6da0cbd798a3389b0bc5516b90e5ece4a0fb939f00bacd1c", size = 4044968, upload-time = "2025-10-15T09:21:15.409Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/9c/3b/111b84cd6ff28d9e955b5f799ef217a17bc1684ac346af333e6100e413cb/mkdocs_material-9.7.0.tar.gz", hash = "sha256:602b359844e906ee402b7ed9640340cf8a474420d02d8891451733b6b02314ec", size = 4094546, upload-time = "2025-11-11T08:49:09.73Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/cc/82/6fdb9a7a04fb222f4849ffec1006f891a0280825a20314d11f3ccdee14eb/mkdocs_material-9.6.22-py3-none-any.whl", hash = "sha256:14ac5f72d38898b2f98ac75a5531aaca9366eaa427b0f49fc2ecf04d99b7ad84", size = 9206252, upload-time = "2025-10-15T09:21:12.175Z" },
+ { url = "https://files.pythonhosted.org/packages/04/87/eefe8d5e764f4cf50ed91b943f8e8f96b5efd65489d8303b7a36e2e79834/mkdocs_material-9.7.0-py3-none-any.whl", hash = "sha256:da2866ea53601125ff5baa8aa06404c6e07af3c5ce3d5de95e3b52b80b442887", size = 9283770, upload-time = "2025-11-11T08:49:06.26Z" },
]
[[package]]
@@ -2077,7 +2077,7 @@ wheels = [
[[package]]
name = "ocrmypdf"
-version = "16.11.0"
+version = "16.12.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "deprecation", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2090,9 +2090,9 @@ dependencies = [
{ name = "pluggy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "rich", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/44/af/947d6abb0cb41f99971a7a4bd33684d3cee20c9e32c8f9dc90e8c5dcf21c/ocrmypdf-16.11.0.tar.gz", hash = "sha256:d89077e503238dac35c6e565925edc8d98b71e5289853c02cacbc1d0901f1be7", size = 7015068, upload-time = "2025-09-12T08:36:53.507Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/2b/ed/dacc0f189e4fcefc52d709e9961929e3f622a85efa5ae47c9d9663d75cab/ocrmypdf-16.12.0.tar.gz", hash = "sha256:a0f6509e7780b286391f8847fae1811d2b157b14283ad74a2431d6755c5c0ed0", size = 7037326, upload-time = "2025-11-11T22:30:14.223Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/d9/b2/eda3bb0939bf81d889812dd82cf37fa6f8769af8e31008bd586ba12fae09/ocrmypdf-16.11.0-py3-none-any.whl", hash = "sha256:13628294a309c85b21947b5c7bc7fcd202464517c14b71a050adc9dde85c48f7", size = 162883, upload-time = "2025-09-12T08:36:51.611Z" },
+ { url = "https://files.pythonhosted.org/packages/ce/34/d9d04420e6f7a71e2135b41599dae273e4ef36e2ce79b065b65fb2471636/ocrmypdf-16.12.0-py3-none-any.whl", hash = "sha256:0ea5c42027db9cf3bd12b0d0b4190689027ef813fdad3377106ea66bba0012c3", size = 163415, upload-time = "2025-11-11T22:30:11.56Z" },
]
[[package]]
@@ -2115,7 +2115,7 @@ wheels = [
[[package]]
name = "paperless-ngx"
-version = "2.19.2"
+version = "2.20.1"
source = { virtual = "." }
dependencies = [
{ name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2181,9 +2181,9 @@ mariadb = [
]
postgres = [
{ name = "psycopg", extra = ["c", "pool"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
- { name = "psycopg-c", version = "3.2.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
- { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'" },
- { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'" },
+ { name = "psycopg-c", version = "3.2.12", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or sys_platform == 'darwin'" },
+ { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'" },
+ { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'" },
{ name = "psycopg-pool", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
webserver = [
@@ -2255,15 +2255,15 @@ typing = [
[package.metadata]
requires-dist = [
{ name = "babel", specifier = ">=2.17" },
- { name = "bleach", specifier = "~=6.2.0" },
+ { name = "bleach", specifier = "~=6.3.0" },
{ name = "celery", extras = ["redis"], specifier = "~=5.5.1" },
{ name = "channels", specifier = "~=4.2" },
{ name = "channels-redis", specifier = "~=4.2" },
{ name = "concurrent-log-handler", specifier = "~=0.9.25" },
{ name = "dateparser", specifier = "~=1.2" },
{ name = "django", specifier = "~=5.2.5" },
- { name = "django-allauth", extras = ["socialaccount", "mfa"], specifier = "~=65.4.0" },
- { name = "django-auditlog", specifier = "~=3.2.1" },
+ { name = "django-allauth", extras = ["mfa", "socialaccount"], specifier = "~=65.12.1" },
+ { name = "django-auditlog", specifier = "~=3.3.0" },
{ name = "django-cachalot", specifier = "~=2.8.0" },
{ name = "django-celery-results", specifier = "~=2.6.0" },
{ name = "django-compression-middleware", specifier = "~=0.5.0" },
@@ -2277,7 +2277,7 @@ requires-dist = [
{ name = "djangorestframework", specifier = "~=3.16" },
{ name = "djangorestframework-guardian", specifier = "~=0.4.0" },
{ name = "drf-spectacular", specifier = "~=0.28" },
- { name = "drf-spectacular-sidecar", specifier = "~=2025.9.1" },
+ { name = "drf-spectacular-sidecar", specifier = "~=2025.10.1" },
{ name = "drf-writable-nested", specifier = "~=0.7.1" },
{ name = "filelock", specifier = "~=3.20.0" },
{ name = "flower", specifier = "~=2.0.1" },
@@ -2290,16 +2290,16 @@ requires-dist = [
{ name = "langdetect", specifier = "~=1.0.9" },
{ name = "mysqlclient", marker = "extra == 'mariadb'", specifier = "~=2.2.7" },
{ name = "nltk", specifier = "~=3.9.1" },
- { name = "ocrmypdf", specifier = "~=16.11.0" },
+ { name = "ocrmypdf", specifier = "~=16.12.0" },
{ name = "pathvalidate", specifier = "~=3.3.1" },
{ name = "pdf2image", specifier = "~=1.17.0" },
- { name = "psycopg", extras = ["c", "pool"], marker = "extra == 'postgres'", specifier = "==3.2.9" },
- { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" },
- { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" },
- { name = "psycopg-c", marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and extra == 'postgres') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and extra == 'postgres') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and extra == 'postgres') or (sys_platform != 'linux' and extra == 'postgres')", specifier = "==3.2.9" },
- { name = "psycopg-pool", marker = "extra == 'postgres'", specifier = "==3.2.6" },
+ { name = "psycopg", extras = ["c", "pool"], marker = "extra == 'postgres'", specifier = "==3.2.12" },
+ { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" },
+ { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" },
+ { name = "psycopg-c", marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and extra == 'postgres') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and extra == 'postgres') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and extra == 'postgres') or (sys_platform != 'linux' and extra == 'postgres')", specifier = "==3.2.12" },
+ { name = "psycopg-pool", marker = "extra == 'postgres'", specifier = "==3.2.7" },
{ name = "python-dateutil", specifier = "~=2.9.0" },
- { name = "python-dotenv", specifier = "~=1.1.0" },
+ { name = "python-dotenv", specifier = "~=1.2.1" },
{ name = "python-gnupg", specifier = "~=0.5.4" },
{ name = "python-ipware", specifier = "~=3.0.0" },
{ name = "python-magic", specifier = "~=0.4.27" },
@@ -2325,8 +2325,8 @@ dev = [
{ name = "factory-boy", specifier = "~=3.3.1" },
{ name = "imagehash" },
{ name = "mkdocs-glightbox", specifier = "~=0.5.1" },
- { name = "mkdocs-material", specifier = "~=9.6.4" },
- { name = "pre-commit", specifier = "~=4.3.0" },
+ { name = "mkdocs-material", specifier = "~=9.7.0" },
+ { name = "pre-commit", specifier = "~=4.4.0" },
{ name = "pre-commit-uv", specifier = "~=4.2.0" },
{ name = "pytest", specifier = "~=8.4.1" },
{ name = "pytest-cov", specifier = "~=7.0.0" },
@@ -2341,10 +2341,10 @@ dev = [
]
docs = [
{ name = "mkdocs-glightbox", specifier = "~=0.5.1" },
- { name = "mkdocs-material", specifier = "~=9.6.4" },
+ { name = "mkdocs-material", specifier = "~=9.7.0" },
]
lint = [
- { name = "pre-commit", specifier = "~=4.3.0" },
+ { name = "pre-commit", specifier = "~=4.4.0" },
{ name = "pre-commit-uv", specifier = "~=4.2.0" },
{ name = "ruff", specifier = "~=0.14.0" },
]
@@ -2475,7 +2475,7 @@ wheels = [
[[package]]
name = "pikepdf"
-version = "9.11.0"
+version = "10.0.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "deprecated", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2483,38 +2483,38 @@ dependencies = [
{ name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "pillow", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/f5/4c/62b37a3ee301c245be6ad269ca771c2c5298bf049366e1094cfdf80d850c/pikepdf-9.11.0.tar.gz", hash = "sha256:5ad6bffba08849c21eee273ba0b6fcd4b6a9cff81bcbca6988f87a765ba62163", size = 4546289, upload-time = "2025-09-12T07:15:11.096Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/f7/79/9a63d5ccac66ace679cf93c84894db15074fe849d41cd39232cb09ec8819/pikepdf-10.0.2.tar.gz", hash = "sha256:7c85a2526253e35575edb2e28cdc740d004be4b7c5fda954f0e721ee1c423a52", size = 4548116, upload-time = "2025-11-10T18:10:08.765Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/66/0f/443a152687cb110e4adb7d998b413d124830cc8967a74e5f236c244c352b/pikepdf-9.11.0-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:8ac1adbb2e32a1cefb9fc51f1e892de1ce0af506f040593384b3af973a46089b", size = 4989446, upload-time = "2025-09-12T07:13:44.401Z" },
- { url = "https://files.pythonhosted.org/packages/4c/b4/a0f3208d2a95f75f1204bbb5a36f83441826fa8463edf92ff08810d4ed0b/pikepdf-9.11.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:f53ccda7be5aa7457a1b32b635a1e289dcdccb607b4fa7198a2c70e163fc0b8b", size = 4682716, upload-time = "2025-09-12T07:13:47.902Z" },
- { url = "https://files.pythonhosted.org/packages/a6/10/12a1f044b3e923a0998b0fb5f81265c4cbf0aa5f6e0d992782497241667e/pikepdf-9.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:491345765d819a9d9d4676bd55ccff15a043db794104325a181e1870ec511855", size = 2380569, upload-time = "2025-09-12T07:13:49.817Z" },
- { url = "https://files.pythonhosted.org/packages/91/3f/eec913d34c01076b02ccb5b897eae4381f95343a69e4a5e19d9783d667a3/pikepdf-9.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:501dd145a3e89ee25c612ae88530813f2612fe24abb178f2907d3cf7997a0719", size = 2597555, upload-time = "2025-09-12T07:13:51.459Z" },
- { url = "https://files.pythonhosted.org/packages/68/82/1d1d6e93d9a456d5309e79d17b32edf8f1faf635cb2106e36e4eccf67ddb/pikepdf-9.11.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab2980881f8a8e500a1ce27e16a69907a87fe0875894ed5269586012794d6bd6", size = 3573555, upload-time = "2025-09-12T07:13:53.2Z" },
- { url = "https://files.pythonhosted.org/packages/ce/92/2c90ea29c11a4cc0e522b32259c1326e6ed58a58d5cf35c5b3436800cc40/pikepdf-9.11.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eb5c579c1da45aa771d379eacf213daceb789055e11f851f662d17eafd56868e", size = 3757083, upload-time = "2025-09-12T07:13:55.337Z" },
- { url = "https://files.pythonhosted.org/packages/fd/19/5a648ca803c98e4195a3c5b4a9e28fc2f919ea6c71a9b30e3bd199ce728d/pikepdf-9.11.0-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:f501ff4c065246d4cf72d8bb50e248189b8d0cfcbf3c6388580658d011d41123", size = 4991632, upload-time = "2025-09-12T07:13:59.685Z" },
- { url = "https://files.pythonhosted.org/packages/73/1b/9b2e4b835ff8f43c9863866eb0841587dc7c5f4ac56f7822bac217bd1766/pikepdf-9.11.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:adb2910ca1ced9c8cd1952fec6788c1e87ac39cd1b7e0c51e466ee8a4b7974c6", size = 4685285, upload-time = "2025-09-12T07:14:01.52Z" },
- { url = "https://files.pythonhosted.org/packages/e9/10/49713c45c524ad97335bedbc5a2bdbc0295c81c023e6d503d2d8eeb5d12b/pikepdf-9.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3958ea903993f8d97714d460a74f63e1f01da2a67c8a24362b7d2c3f8ee49e41", size = 2387526, upload-time = "2025-09-12T07:14:03.141Z" },
- { url = "https://files.pythonhosted.org/packages/c7/51/0b03dd0b3048bb521a486dc60dfa407f583f9b70248b7cc27008044d1212/pikepdf-9.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f642be1eaf3ab6f2c8d9a5c8d90c83dbfcb556624e426574b8fb15578dad11cf", size = 2605773, upload-time = "2025-09-12T07:14:04.837Z" },
- { url = "https://files.pythonhosted.org/packages/b9/1b/d14309b905ab8b88a93f7364025135bfe9489b1169bb32a4c5ce66538266/pikepdf-9.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3ec710fde0543a73221d1553671559b4cb1fe4f883bff6ff4094d23a7c6e0a65", size = 3582806, upload-time = "2025-09-12T07:14:06.582Z" },
- { url = "https://files.pythonhosted.org/packages/d6/72/1496333781ac5fb209b58914ca0fe39559e4cfa9491a9954bbbe13a0aec6/pikepdf-9.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec2147018edf5a5c7ab981a5fb3b060e5af1366c4d6aa085f2dcf881fdb4ee7e", size = 3765976, upload-time = "2025-09-12T07:14:08.345Z" },
- { url = "https://files.pythonhosted.org/packages/fe/58/0da186afd9e50bf93fa71838378ecde096cff5a16c69b0de8d629ded127a/pikepdf-9.11.0-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:bd9ab8286316f758a107bfa7496c2fcada9f687467e4c68b3bfd6f3167a86d54", size = 5008605, upload-time = "2025-09-12T07:14:12.419Z" },
- { url = "https://files.pythonhosted.org/packages/c9/66/4de410fbfae6e1a02e9240a1831a7d7430a9bce67ad3af9456e5322a2513/pikepdf-9.11.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a0cc52f3161b1245d810c16bb8e244a1b53bad9a47cd004ea1dd7b291a4f3db7", size = 4697137, upload-time = "2025-09-12T07:14:14.329Z" },
- { url = "https://files.pythonhosted.org/packages/e5/99/e7b5d3daccb9d6f19b06dfcfb77853d2ca26d3c84c1a9b9649d89e10bfe3/pikepdf-9.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c2a5a618e35e98fd9872bbbab4f183d7fd574a8e141c92cb01f7147323289413", size = 2395911, upload-time = "2025-09-12T07:14:16.024Z" },
- { url = "https://files.pythonhosted.org/packages/bc/af/11c28aace8696221613ed0799f547c58e64d92718ca62388ffae273e664d/pikepdf-9.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa87a2c31143037b78a397a0242879c11c0131e5660acbc20e2a6d6b193d48b0", size = 2630093, upload-time = "2025-09-12T07:14:17.904Z" },
- { url = "https://files.pythonhosted.org/packages/b4/9c/793cb2602f4903847437dbf47e30c126fded689e00a5737c8ccb6fda440a/pikepdf-9.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:70e008bc3da40b5a0b7007702291cd529a8917c6862e4d3db1eab986beae95ed", size = 3587720, upload-time = "2025-09-12T07:14:19.884Z" },
- { url = "https://files.pythonhosted.org/packages/c0/bb/6091c136fc7b605fb38d41777e8f887b830f22a95d2b3469b93c9763f2b3/pikepdf-9.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:56e3aca58aeeef52fca3dd9555eb735f2cc37166ff658a3837b5f73d59627b4f", size = 3789963, upload-time = "2025-09-12T07:14:22.282Z" },
- { url = "https://files.pythonhosted.org/packages/83/c7/e6808027895f312f711c528c0ff4acee30183b1ab11657283ba50ef08009/pikepdf-9.11.0-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:4216120eec527596b23ab280f4eb4f029a150ec5f1227a2988e87b91ca51cfd7", size = 5008670, upload-time = "2025-09-12T07:14:27.612Z" },
- { url = "https://files.pythonhosted.org/packages/1d/0b/9b8fcc33778cc01cdebd8b8f397cacc45b44d252758bd49efd5c19c28ddc/pikepdf-9.11.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:2a7b3ca12af17e165c10bc500dbacefefbe78108cf8bc1db860f70fda0c399b2", size = 4697038, upload-time = "2025-09-12T07:14:29.538Z" },
- { url = "https://files.pythonhosted.org/packages/82/62/32dc82a07d4a080ae21d937587b58cfa939ed55ac5c8828fe1faad96109d/pikepdf-9.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dbb550492e82e79056793d191838676dd01af849a27e5da7905797dac3d88a0b", size = 2396860, upload-time = "2025-09-12T07:14:32.203Z" },
- { url = "https://files.pythonhosted.org/packages/5e/e9/ea6f34fb94d17c74e7eca0cd7bf22e281f005446280d77c46aa1f077e1bd/pikepdf-9.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0b8280279d2229854df7f3c579d06926902d8b70649eb64ad9589f17e0bd352", size = 2632683, upload-time = "2025-09-12T07:14:34.29Z" },
- { url = "https://files.pythonhosted.org/packages/a5/b1/fcf8e3fec8be17b74768448da94cffe3a69b418ffde2f620d093fd693ddf/pikepdf-9.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8569c338365c0f5187e250e7668477de222a784f1fa1d17574e99588d65defe0", size = 3588446, upload-time = "2025-09-12T07:14:36.625Z" },
- { url = "https://files.pythonhosted.org/packages/52/03/9ce3bd1a4f87789981b560003d5786163ccae34090b1c872a09cbd9a0168/pikepdf-9.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bbc42f95714d09ad4c5345b010126d25639abe402643737d2b74c41167f932c0", size = 3790549, upload-time = "2025-09-12T07:14:38.54Z" },
- { url = "https://files.pythonhosted.org/packages/e6/43/adfd1daf833d646ada849c4f3f50ad6032e8e82112595cbeacebcc25d1d8/pikepdf-9.11.0-cp314-cp314-macosx_13_0_x86_64.whl", hash = "sha256:b366aefe9a30caababfbdc9f4647c8d0b7e92cfe34b6399399b78d4b96db9004", size = 5003377, upload-time = "2025-09-12T07:14:42.288Z" },
- { url = "https://files.pythonhosted.org/packages/c7/d9/5932cb5d884d360b253f0cb615f0f78f30c0a1d762c5a10760abf96a0811/pikepdf-9.11.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3aed8fa4dabbf8ac1d9f5b8c15fa0881040f21ae58b4436c7f51f43c2375fc77", size = 4692845, upload-time = "2025-09-12T07:14:44.299Z" },
- { url = "https://files.pythonhosted.org/packages/f5/87/a674468806890d10f2f931641f06aa7dac8400594a96a7baf4d9f1d8810e/pikepdf-9.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a09b060e52449080a87720d6af00f551f879e55c6d8e8884526e5434843fc15e", size = 2401793, upload-time = "2025-09-12T07:14:46.202Z" },
- { url = "https://files.pythonhosted.org/packages/1c/99/7727cd512db321ee81d20f96a072933677ed58ece03b449fe003ff78ed92/pikepdf-9.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42e5a69c32718b25da863ff3d408aa8bde677e19dbf8b05e6a12244f99c65f3", size = 2635642, upload-time = "2025-09-12T07:14:48.172Z" },
- { url = "https://files.pythonhosted.org/packages/0d/a0/0ebde63512eb79851eda33c2e798ffcc4956b34a0e425f8185c18f27eb0c/pikepdf-9.11.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:82f628fcfd98f27b0feac273aa2e088e47bc6e2b22d73c6251449b6bc901244a", size = 3593088, upload-time = "2025-09-12T07:14:50.499Z" },
- { url = "https://files.pythonhosted.org/packages/78/5b/da03983f19c7603cf3945d79df7e729070d10e6c1845b8f9d0ae70baac69/pikepdf-9.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c84358dce401f5bbb0725d38567fbd218de4e1efedd139b9626a8f9e3dc2cd66", size = 3794158, upload-time = "2025-09-12T07:14:52.801Z" },
+ { url = "https://files.pythonhosted.org/packages/48/fa/ab2b88c097b4542663065631f0a1f693ed2a6e585cf92d6226267d0f66ad/pikepdf-10.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:2698975488753fd0d8d06bf2d15c809f2b0be7f34eb75f068161d7313f331b3b", size = 4673132, upload-time = "2025-11-10T18:08:54.191Z" },
+ { url = "https://files.pythonhosted.org/packages/a7/04/20985de6520c5d7018fc7d2fd9d2804d9348d39df3c08d11f115c522fcde/pikepdf-10.0.2-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:e018fae8df61b2d5aa376ff381178f9d6930ee68d24b26a9a4409f8ff7c7cb1e", size = 4972194, upload-time = "2025-11-10T18:08:58.588Z" },
+ { url = "https://files.pythonhosted.org/packages/97/8b/b32af8b69f475a736904d34e83e136bae0ca7fe221090cd36ee136112efc/pikepdf-10.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:af565ad6ff5d96611a657c1e12e1429749f36271e7e368f82ba3a8a4635ac3dd", size = 2379539, upload-time = "2025-11-10T18:09:00.278Z" },
+ { url = "https://files.pythonhosted.org/packages/b0/ca/79f9886ad5322b603adc823b2663bcfb51a2729b9feb14dcb270e94528dd/pikepdf-10.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d150903852630b89d67832e56d7fb0b2bfd0e228f269d498de5d28b53078db9", size = 2596832, upload-time = "2025-11-10T18:09:01.889Z" },
+ { url = "https://files.pythonhosted.org/packages/09/52/2793b5dd95611614b96cde0f78736910506abdab87a7038d126093c8f0ed/pikepdf-10.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:99c9cc66689120eba0aec858256ab4c3661e792a1d2a6c07575090c9a54d5bf3", size = 3574220, upload-time = "2025-11-10T18:09:04.25Z" },
+ { url = "https://files.pythonhosted.org/packages/82/be/b47271b5e13bb0c678118a132066c29a90bfd6788224e1a73fecf2eb548d/pikepdf-10.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b75a29c2adeb8ae0277c76d232f75517c2cbd23f43212f8daac267d25f1cc656", size = 3757893, upload-time = "2025-11-10T18:09:05.962Z" },
+ { url = "https://files.pythonhosted.org/packages/b4/bc/baff13dff8422c13e37bcb4b53bd55764cce88c7f6d8e7ff43f2dcb4f4ee/pikepdf-10.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:92a801d90cf7cab88c750d964de30cfe06dc04449cb51c38a863af75caa8b8cb", size = 4675949, upload-time = "2025-11-10T18:09:09.827Z" },
+ { url = "https://files.pythonhosted.org/packages/d5/0d/158efe9a1a160b244c071e1893f154dfd905148c545d5f88d216b7f32f89/pikepdf-10.0.2-cp311-cp311-macosx_15_0_x86_64.whl", hash = "sha256:2f2c58f5b39e3e87d34d3a596922210f63e730a78c2aa6201667881b2c41a878", size = 4974326, upload-time = "2025-11-10T18:09:11.848Z" },
+ { url = "https://files.pythonhosted.org/packages/48/0e/b2b6007d500dd6b76b6cffc8ec9f869395e55e19521a2f5bf988043c8302/pikepdf-10.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de987c50205a316a31bc46e5e6a32592244895cb9a95186ba5bcd398272e7d69", size = 2387154, upload-time = "2025-11-10T18:09:15.787Z" },
+ { url = "https://files.pythonhosted.org/packages/ef/e5/094989c2db7d778fe47343d0a4dff610228e10eae2426be8ed6feb0f43b3/pikepdf-10.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d3736dfeba9eaf0aa710317d4dbdaee32d55be18d36a1b29fab2e4361cb7ae0", size = 2606870, upload-time = "2025-11-10T18:09:18.048Z" },
+ { url = "https://files.pythonhosted.org/packages/dc/6d/5b6561a546e4036f6fa203cd8c5afe0874fe272b2b1c82b2350519ac9e8c/pikepdf-10.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d3b1fd46081dbc0302ef058f0bdadefe8f6db1de00b332759ad7cd32efa2705", size = 3583199, upload-time = "2025-11-10T18:09:19.781Z" },
+ { url = "https://files.pythonhosted.org/packages/bc/b7/9794e2127eedbc01db1232bea4bfa86e38513fa3c78cba4f9d2837c6f230/pikepdf-10.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7ca982269f3fe084a9267d323c377f0afa6de33b3fd2dca4df67289001fce042", size = 3768564, upload-time = "2025-11-10T18:09:22.693Z" },
+ { url = "https://files.pythonhosted.org/packages/42/03/ef096d5bccf70606fcd40ef3519e048028144ebdd5735092398d9cf0ee3f/pikepdf-10.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:0a5e798d6b0759bae1e30b8b05853b5c8d4016129db658f3a3e3320781ef2376", size = 4687898, upload-time = "2025-11-10T18:09:26.145Z" },
+ { url = "https://files.pythonhosted.org/packages/40/27/cd69b14359772b3a447aa6687da3436fcdf16664be06ca88aef984453217/pikepdf-10.0.2-cp312-cp312-macosx_15_0_x86_64.whl", hash = "sha256:8d8ecc258f90cd1287f8527dd3b94aa178be7c0e04f313ae4182f21c24fd328d", size = 4985422, upload-time = "2025-11-10T18:09:27.955Z" },
+ { url = "https://files.pythonhosted.org/packages/f9/cb/442ff1273ac155d1cd0f81fb7acf9848f8c4b595616ed8d2d846b9327e31/pikepdf-10.0.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ca4d5d1ca3f7af568e62cadf1c64238490b6503a512894c99e48042e3eb3648", size = 2395555, upload-time = "2025-11-10T18:09:30.129Z" },
+ { url = "https://files.pythonhosted.org/packages/e5/d0/9d4ed596e5419dd4bc8c162f0337398dc1ddc94e2d7bf6f3d0fb6eef561b/pikepdf-10.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fa22c5496e14fa3e89b94117fe56494b895cd02e53842f60331ac4bc078f04c7", size = 2631976, upload-time = "2025-11-10T18:09:32.214Z" },
+ { url = "https://files.pythonhosted.org/packages/86/59/205f83746288590f22d1ff8b43fc93b193ddeca26261c61b5621d03048a1/pikepdf-10.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:df502e0c6d0731bd3f98523e5d501d4a21b36844f0061ef25f2500b18766fb51", size = 3588060, upload-time = "2025-11-10T18:09:34.252Z" },
+ { url = "https://files.pythonhosted.org/packages/b2/54/4e9c8b53f22a4e527cf1087c5b26e127aa028c51d81cf53b10f34c34db8d/pikepdf-10.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:98464b4d8f0340ab38575cc41acf9061e2639c90e3a25c491c3ef3d01b92899f", size = 3791776, upload-time = "2025-11-10T18:09:36.055Z" },
+ { url = "https://files.pythonhosted.org/packages/b3/f1/eabc9e780f9d0fe0316ce0185a1064d28b18c219fd8d1b0609205c18ac39/pikepdf-10.0.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f06c8dbf1f6cab87815b7ed0e4b1359da8665c4bb51a9fbdd71824c0b1bbb28c", size = 4687891, upload-time = "2025-11-10T18:09:40.003Z" },
+ { url = "https://files.pythonhosted.org/packages/e7/3a/ce1cf39d9eac09885efa69cc6bbe537ec2b7a24beded2fd0d9de779513f4/pikepdf-10.0.2-cp313-cp313-macosx_15_0_x86_64.whl", hash = "sha256:c3d421c6d4ef1aa394d30c683bb18c436817467c4db8279a4ff0f9d0a96aa323", size = 4985564, upload-time = "2025-11-10T18:09:42.624Z" },
+ { url = "https://files.pythonhosted.org/packages/2f/f2/91664c4a7bda3fd3240e99a8ea602bb674ae88eea5dd798fa54c763da7e5/pikepdf-10.0.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0487fa6f64c26baa3f7131a917c37bb1183364a213678c155184944ca711881d", size = 2396504, upload-time = "2025-11-10T18:09:44.622Z" },
+ { url = "https://files.pythonhosted.org/packages/12/8f/84717f30989f81ba94188a0185791039b683ed4ab43003ab5114aa07f154/pikepdf-10.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:55378c0c1d7c32c32466809fc4c7a08efd2d6a0f75e22b25e3791ab33001382b", size = 2635392, upload-time = "2025-11-10T18:09:46.301Z" },
+ { url = "https://files.pythonhosted.org/packages/0c/1c/960ff2fe0c11ab936db04202da6be136909757ecf131690b58d2aeef4d67/pikepdf-10.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cb5d7278cf9655eedde443f737ffab57eeaf81b5585094644759c368d28ac1bd", size = 3588629, upload-time = "2025-11-10T18:09:48.042Z" },
+ { url = "https://files.pythonhosted.org/packages/04/56/9e6d87d20c520afb8afe28cddf37ddaa4a70aaf9aec2e25d53522a91d9c4/pikepdf-10.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8e460726e0753b0196a241f11f80c90a30fcaf3e7bc7d908cf85594890cb981c", size = 3792852, upload-time = "2025-11-10T18:09:50.213Z" },
+ { url = "https://files.pythonhosted.org/packages/f2/92/ddc07c58bb0e99f6c7ed5cdec63ed305bf22d29f875fb7a5b626f3eca177/pikepdf-10.0.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:821592290f33943d0dbde294a56db2b777b7edf519dabbe77d1a8e99a96f96ea", size = 4683719, upload-time = "2025-11-10T18:09:53.991Z" },
+ { url = "https://files.pythonhosted.org/packages/9b/05/f43a0dde38720c960910ea7c2916a608d6dcb42d4cdf00b6a202704a0e35/pikepdf-10.0.2-cp314-cp314-macosx_15_0_x86_64.whl", hash = "sha256:64f46f9db208cd4166b73da31e201258e47cb3c3645d9856782e9fa041503268", size = 4986050, upload-time = "2025-11-10T18:09:56.36Z" },
+ { url = "https://files.pythonhosted.org/packages/2a/7d/2899179c383d6dd53c7f74a772f6df16f4d6dca84584f777ebf1e1fb3f34/pikepdf-10.0.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:434ae183af796288d918be2825f950947a9b329850008bb97743f3297529a537", size = 2402087, upload-time = "2025-11-10T18:09:58.877Z" },
+ { url = "https://files.pythonhosted.org/packages/a8/9f/c6989364ffa8b44b2c581316a3e59dac4497591336e941171e80e27bf664/pikepdf-10.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e23617b12fceee49a5b17b0ad7921ef50eaf4e1d23babec893b8dbc498bb3f2", size = 2637508, upload-time = "2025-11-10T18:10:00.684Z" },
+ { url = "https://files.pythonhosted.org/packages/96/9c/72846bf3454637450cca8cc9620dbb6d7df035ed3ff41b656c4a516e5495/pikepdf-10.0.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:09da390be9d8558b77372a016498fc3d8edc9e5fd3928557f6012cb29f9114fb", size = 3595197, upload-time = "2025-11-10T18:10:02.688Z" },
+ { url = "https://files.pythonhosted.org/packages/77/2c/b8221889158a748e3e74edbba9590fcb6516605fa169cb786b3d81f71129/pikepdf-10.0.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9165ef885b657a0602623a996ea230a450e7774b48e9d7bf463f46b0dbc738df", size = 3796398, upload-time = "2025-11-10T18:10:04.826Z" },
]
[[package]]
@@ -2625,7 +2625,7 @@ wheels = [
[[package]]
name = "pre-commit"
-version = "4.3.0"
+version = "4.4.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "cfgv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2634,9 +2634,9 @@ dependencies = [
{ name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "virtualenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/ff/29/7cf5bbc236333876e4b41f56e06857a87937ce4bf91e117a6991a2dbb02a/pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16", size = 193792, upload-time = "2025-08-09T18:56:14.651Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/a6/49/7845c2d7bf6474efd8e27905b51b11e6ce411708c91e829b93f324de9929/pre_commit-4.4.0.tar.gz", hash = "sha256:f0233ebab440e9f17cabbb558706eb173d19ace965c68cdce2c081042b4fab15", size = 197501, upload-time = "2025-11-08T21:12:11.607Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8", size = 220965, upload-time = "2025-08-09T18:56:13.192Z" },
+ { url = "https://files.pythonhosted.org/packages/27/11/574fe7d13acf30bfd0a8dd7fa1647040f2b8064f13f43e8c963b1e65093b/pre_commit-4.4.0-py2.py3-none-any.whl", hash = "sha256:b35ea52957cbf83dcc5d8ee636cbead8624e3a15fbfa61a370e42158ac8a5813", size = 226049, upload-time = "2025-11-08T21:12:10.228Z" },
]
[[package]]
@@ -2675,21 +2675,21 @@ wheels = [
[[package]]
name = "psycopg"
-version = "3.2.9"
+version = "3.2.12"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "typing-extensions", marker = "(python_full_version < '3.13' and sys_platform == 'darwin') or (python_full_version < '3.13' and sys_platform == 'linux')" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/27/4a/93a6ab570a8d1a4ad171a1f4256e205ce48d828781312c0bbaff36380ecb/psycopg-3.2.9.tar.gz", hash = "sha256:2fbb46fcd17bc81f993f28c47f1ebea38d66ae97cc2dbc3cad73b37cefbff700", size = 158122, upload-time = "2025-05-13T16:11:15.533Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/a8/77/c72d10262b872617e509a0c60445afcc4ce2cd5cd6bc1c97700246d69c85/psycopg-3.2.12.tar.gz", hash = "sha256:85c08d6f6e2a897b16280e0ff6406bef29b1327c045db06d21f364d7cd5da90b", size = 160642, upload-time = "2025-10-26T00:46:03.045Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/44/b0/a73c195a56eb6b92e937a5ca58521a5c3346fb233345adc80fd3e2f542e2/psycopg-3.2.9-py3-none-any.whl", hash = "sha256:01a8dadccdaac2123c916208c96e06631641c0566b22005493f09663c7a8d3b6", size = 202705, upload-time = "2025-05-13T16:06:26.584Z" },
+ { url = "https://files.pythonhosted.org/packages/c8/28/8c4f90e415411dc9c78d6ba10b549baa324659907c13f64bfe3779d4066c/psycopg-3.2.12-py3-none-any.whl", hash = "sha256:8a1611a2d4c16ae37eada46438be9029a35bb959bb50b3d0e1e93c0f3d54c9ee", size = 206765, upload-time = "2025-10-26T00:10:42.173Z" },
]
[package.optional-dependencies]
c = [
- { name = "psycopg-c", version = "3.2.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and sys_platform == 'darwin')" },
- { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux'" },
- { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux'" },
+ { name = "psycopg-c", version = "3.2.12", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and sys_platform == 'darwin')" },
+ { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux'" },
+ { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux'" },
]
pool = [
{ name = "psycopg-pool", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2697,7 +2697,7 @@ pool = [
[[package]]
name = "psycopg-c"
-version = "3.2.9"
+version = "3.2.12"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"python_full_version >= '3.11' and sys_platform == 'darwin'",
@@ -2705,40 +2705,40 @@ resolution-markers = [
"(python_full_version >= '3.11' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux')",
"python_full_version < '3.11' and sys_platform == 'linux'",
]
-sdist = { url = "https://files.pythonhosted.org/packages/83/7f/6147cb842081b0b32692bf5a0fdf58e9ac95418ebac1184d4431ec44b85f/psycopg_c-3.2.9.tar.gz", hash = "sha256:8c9f654f20c6c56bddc4543a3caab236741ee94b6732ab7090b95605502210e2", size = 609538, upload-time = "2025-05-13T16:11:19.856Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/68/27/33699874745d7bb195e78fd0a97349908b64d3ec5fea7b8e5e52f56df04c/psycopg_c-3.2.12.tar.gz", hash = "sha256:1c80042067d5df90d184c6fbd58661350b3620f99d87a01c882953c4d5dfa52b", size = 608386, upload-time = "2025-10-26T00:46:08.727Z" }
[[package]]
name = "psycopg-c"
-version = "3.2.9"
-source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }
+version = "3.2.12"
+source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }
resolution-markers = [
"python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'",
]
wheels = [
- { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl", hash = "sha256:f045e0e0c532d95c9056329439d7c8578a32842be6d26c666a50bec447972e54" },
+ { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl", hash = "sha256:3492dc3760133ce8b422786136f41763acaa2dc890d3ab3e58b49627fd1e4e92" },
]
[[package]]
name = "psycopg-c"
-version = "3.2.9"
-source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }
+version = "3.2.12"
+source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }
resolution-markers = [
"python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'",
]
wheels = [
- { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl", hash = "sha256:250c357319242da102047b04c5cc78af872dbf85c2cb05abf114e1fb5f207917" },
+ { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl", hash = "sha256:64ca43e3521a761c2ae5ea883c71bae619abe0e6392d388424776c93e55de8a8" },
]
[[package]]
name = "psycopg-pool"
-version = "3.2.6"
+version = "3.2.7"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/cf/13/1e7850bb2c69a63267c3dbf37387d3f71a00fd0e2fa55c5db14d64ba1af4/psycopg_pool-3.2.6.tar.gz", hash = "sha256:0f92a7817719517212fbfe2fd58b8c35c1850cdd2a80d36b581ba2085d9148e5", size = 29770, upload-time = "2025-02-26T12:03:47.129Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/9d/8f/3ec52b17087c2ed5fa32b64fd4814dde964c9aa4bd49d0d30fc24725ca6d/psycopg_pool-3.2.7.tar.gz", hash = "sha256:a77d531bfca238e49e5fb5832d65b98e69f2c62bfda3d2d4d833696bdc9ca54b", size = 29765, upload-time = "2025-10-26T00:46:10.379Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/47/fd/4feb52a55c1a4bd748f2acaed1903ab54a723c47f6d0242780f4d97104d4/psycopg_pool-3.2.6-py3-none-any.whl", hash = "sha256:5887318a9f6af906d041a0b1dc1c60f8f0dda8340c2572b74e10907b51ed5da7", size = 38252, upload-time = "2025-02-26T12:03:45.073Z" },
+ { url = "https://files.pythonhosted.org/packages/e7/59/74e752f605c6f0e351d4cf1c54fb9a1616dc800db4572b95bbfbb1a6225f/psycopg_pool-3.2.7-py3-none-any.whl", hash = "sha256:4b47bb59d887ef5da522eb63746b9f70e2faf967d34aac4f56ffc65e9606728f", size = 38232, upload-time = "2025-10-26T00:46:00.496Z" },
]
[[package]]
@@ -2954,11 +2954,11 @@ wheels = [
[[package]]
name = "python-dotenv"
-version = "1.1.1"
+version = "1.2.1"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/f6/b0/4bc07ccd3572a2f9df7e6782f52b0c6c90dcbb803ac4a167702d7d0dfe1e/python_dotenv-1.1.1.tar.gz", hash = "sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab", size = 41978, upload-time = "2025-06-24T04:21:07.341Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/f0/26/19cadc79a718c5edbec86fd4919a6b6d3f681039a2f6d66d14be94e75fb9/python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6", size = 44221, upload-time = "2025-10-26T15:12:10.434Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/5f/ed/539768cf28c661b5b068d66d96a2f155c4971a5d55684a514c1a0e0dec2f/python_dotenv-1.1.1-py3-none-any.whl", hash = "sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc", size = 20556, upload-time = "2025-06-24T04:21:06.073Z" },
+ { url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" },
]
[[package]]
@@ -3173,78 +3173,70 @@ wheels = [
[[package]]
name = "rapidfuzz"
-version = "3.14.1"
+version = "3.14.3"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/ed/fc/a98b616db9a42dcdda7c78c76bdfdf6fe290ac4c5ffbb186f73ec981ad5b/rapidfuzz-3.14.1.tar.gz", hash = "sha256:b02850e7f7152bd1edff27e9d584505b84968cacedee7a734ec4050c655a803c", size = 57869570, upload-time = "2025-09-08T21:08:15.922Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/6a/b9/4e35178f405a1a95abd37cce4dc09d4a5bbc5e098687680b5ba796d3115b/rapidfuzz-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:489440e4b5eea0d150a31076eb183bed0ec84f934df206c72ae4fc3424501758", size = 1939645, upload-time = "2025-09-08T21:05:16.569Z" },
- { url = "https://files.pythonhosted.org/packages/51/af/fd7b8662a3b6952559af322dcf1c9d4eb5ec6be2697c30ae8ed3c44876ca/rapidfuzz-3.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eff22cc938c3f74d194df03790a6c3325d213b28cf65cdefd6fdeae759b745d5", size = 1393620, upload-time = "2025-09-08T21:05:18.598Z" },
- { url = "https://files.pythonhosted.org/packages/c5/5b/5715445e29c1c6ba364b3d27278da3fdffb18d9147982e977c6638dcecbf/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0307f018b16feaa36074bcec2496f6f120af151a098910296e72e233232a62f", size = 1387721, upload-time = "2025-09-08T21:05:20.408Z" },
- { url = "https://files.pythonhosted.org/packages/19/49/83a14a6a90982b090257c4b2e96b9b9c423a89012b8504d5a14d92a4f8c2/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bc133652da143aca1ab72de235446432888b2b7f44ee332d006f8207967ecb8a", size = 1694545, upload-time = "2025-09-08T21:05:22.137Z" },
- { url = "https://files.pythonhosted.org/packages/99/f7/94618fcaaac8c04abf364f405c6811a02bc9edef209f276dc513a9a50f7c/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e9e71b3fe7e4a1590843389a90fe2a8684649fc74b9b7446e17ee504ddddb7de", size = 2237075, upload-time = "2025-09-08T21:05:23.637Z" },
- { url = "https://files.pythonhosted.org/packages/58/f6/a5ee2db25f36b0e5e06502fb77449b7718cd9f92ad36d598e669ba91db7b/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c51519eb2f20b52eba6fc7d857ae94acc6c2a1f5d0f2d794b9d4977cdc29dd7", size = 3168778, upload-time = "2025-09-08T21:05:25.508Z" },
- { url = "https://files.pythonhosted.org/packages/0f/e8/c9620e358805c099e6755b7d2827b1e711b5e61914d6112ce2faa2c2af79/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:fe87d94602624f8f25fff9a0a7b47f33756c4d9fc32b6d3308bb142aa483b8a4", size = 1223827, upload-time = "2025-09-08T21:05:27.299Z" },
- { url = "https://files.pythonhosted.org/packages/84/08/24916c3c3d55d6236474c9da0a595641d0013d3604de0625e8a8974371c3/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2d665380503a575dda52eb712ea521f789e8f8fd629c7a8e6c0f8ff480febc78", size = 2408366, upload-time = "2025-09-08T21:05:28.808Z" },
- { url = "https://files.pythonhosted.org/packages/40/d4/4152e8821b5c548443a6c46568fccef13de5818a5ab370d553ea3d5955b3/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0f0dd022b8a7cbf3c891f6de96a80ab6a426f1069a085327816cea749e096c2", size = 2530148, upload-time = "2025-09-08T21:05:30.782Z" },
- { url = "https://files.pythonhosted.org/packages/bd/af/6587c6d590abe232c530ad43fbfbcaec899bff7204e237f1fd21e2e44b81/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf1ba22d36858b265c95cd774ba7fe8991e80a99cd86fe4f388605b01aee81a3", size = 2810628, upload-time = "2025-09-08T21:05:32.844Z" },
- { url = "https://files.pythonhosted.org/packages/d7/90/a99e6cfd90feb9d770654f1f39321099bbbf7f85d2832f2ef48d3f4ebc5f/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ca1c1494ac9f9386d37f0e50cbaf4d07d184903aed7691549df1b37e9616edc9", size = 3314406, upload-time = "2025-09-08T21:05:34.585Z" },
- { url = "https://files.pythonhosted.org/packages/5f/b3/eba5a6c217200fd1d3615997930a9e5db6a74e3002b7867b54545f9b5cbb/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9e4b12e921b0fa90d7c2248742a536f21eae5562174090b83edd0b4ab8b557d7", size = 4280030, upload-time = "2025-09-08T21:05:36.646Z" },
- { url = "https://files.pythonhosted.org/packages/5c/c7/c3c860d512606225c11c8ee455b4dc0b0214dbcfac90a2c22dddf55320f3/rapidfuzz-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d976701060886a791c8a9260b1d4139d14c1f1e9a6ab6116b45a1acf3baff67", size = 1938398, upload-time = "2025-09-08T21:05:44.031Z" },
- { url = "https://files.pythonhosted.org/packages/c0/f3/67f5c5cd4d728993c48c1dcb5da54338d77c03c34b4903cc7839a3b89faf/rapidfuzz-3.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e6ba7e6eb2ab03870dcab441d707513db0b4264c12fba7b703e90e8b4296df2", size = 1392819, upload-time = "2025-09-08T21:05:45.549Z" },
- { url = "https://files.pythonhosted.org/packages/d5/06/400d44842f4603ce1bebeaeabe776f510e329e7dbf6c71b6f2805e377889/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e532bf46de5fd3a1efde73a16a4d231d011bce401c72abe3c6ecf9de681003f", size = 1391798, upload-time = "2025-09-08T21:05:47.044Z" },
- { url = "https://files.pythonhosted.org/packages/90/97/a6944955713b47d88e8ca4305ca7484940d808c4e6c4e28b6fa0fcbff97e/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f9b6a6fb8ed9b951e5f3b82c1ce6b1665308ec1a0da87f799b16e24fc59e4662", size = 1699136, upload-time = "2025-09-08T21:05:48.919Z" },
- { url = "https://files.pythonhosted.org/packages/a8/1e/f311a5c95ddf922db6dd8666efeceb9ac69e1319ed098ac80068a4041732/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b6ac3f9810949caef0e63380b11a3c32a92f26bacb9ced5e32c33560fcdf8d1", size = 2236238, upload-time = "2025-09-08T21:05:50.844Z" },
- { url = "https://files.pythonhosted.org/packages/85/27/e14e9830255db8a99200f7111b158ddef04372cf6332a415d053fe57cc9c/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e52e4c34fd567f77513e886b66029c1ae02f094380d10eba18ba1c68a46d8b90", size = 3183685, upload-time = "2025-09-08T21:05:52.362Z" },
- { url = "https://files.pythonhosted.org/packages/61/b2/42850c9616ddd2887904e5dd5377912cbabe2776fdc9fd4b25e6e12fba32/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:2ef72e41b1a110149f25b14637f1cedea6df192462120bea3433980fe9d8ac05", size = 1231523, upload-time = "2025-09-08T21:05:53.927Z" },
- { url = "https://files.pythonhosted.org/packages/de/b5/6b90ed7127a1732efef39db46dd0afc911f979f215b371c325a2eca9cb15/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fb654a35b373d712a6b0aa2a496b2b5cdd9d32410cfbaecc402d7424a90ba72a", size = 2415209, upload-time = "2025-09-08T21:05:55.422Z" },
- { url = "https://files.pythonhosted.org/packages/70/60/af51c50d238c82f2179edc4b9f799cc5a50c2c0ebebdcfaa97ded7d02978/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:2b2c12e5b9eb8fe9a51b92fe69e9ca362c0970e960268188a6d295e1dec91e6d", size = 2532957, upload-time = "2025-09-08T21:05:57.048Z" },
- { url = "https://files.pythonhosted.org/packages/50/92/29811d2ba7c984251a342c4f9ccc7cc4aa09d43d800af71510cd51c36453/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4f069dec5c450bd987481e752f0a9979e8fdf8e21e5307f5058f5c4bb162fa56", size = 2815720, upload-time = "2025-09-08T21:05:58.618Z" },
- { url = "https://files.pythonhosted.org/packages/78/69/cedcdee16a49e49d4985eab73b59447f211736c5953a58f1b91b6c53a73f/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4d0d9163725b7ad37a8c46988cae9ebab255984db95ad01bf1987ceb9e3058dd", size = 3323704, upload-time = "2025-09-08T21:06:00.576Z" },
- { url = "https://files.pythonhosted.org/packages/76/3e/5a3f9a5540f18e0126e36f86ecf600145344acb202d94b63ee45211a18b8/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db656884b20b213d846f6bc990c053d1f4a60e6d4357f7211775b02092784ca1", size = 4287341, upload-time = "2025-09-08T21:06:02.301Z" },
- { url = "https://files.pythonhosted.org/packages/df/77/2f4887c9b786f203e50b816c1cde71f96642f194e6fa752acfa042cf53fd/rapidfuzz-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:809515194f628004aac1b1b280c3734c5ea0ccbd45938c9c9656a23ae8b8f553", size = 1932216, upload-time = "2025-09-08T21:06:09.342Z" },
- { url = "https://files.pythonhosted.org/packages/de/bd/b5e445d156cb1c2a87d36d8da53daf4d2a1d1729b4851660017898b49aa0/rapidfuzz-3.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0afcf2d6cb633d0d4260d8df6a40de2d9c93e9546e2c6b317ab03f89aa120ad7", size = 1393414, upload-time = "2025-09-08T21:06:10.959Z" },
- { url = "https://files.pythonhosted.org/packages/de/bd/98d065dd0a4479a635df855616980eaae1a1a07a876db9400d421b5b6371/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5c1c3d07d53dcafee10599da8988d2b1f39df236aee501ecbd617bd883454fcd", size = 1377194, upload-time = "2025-09-08T21:06:12.471Z" },
- { url = "https://files.pythonhosted.org/packages/d3/8a/1265547b771128b686f3c431377ff1db2fa073397ed082a25998a7b06d4e/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6e9ee3e1eb0a027717ee72fe34dc9ac5b3e58119f1bd8dd15bc19ed54ae3e62b", size = 1669573, upload-time = "2025-09-08T21:06:14.016Z" },
- { url = "https://files.pythonhosted.org/packages/a8/57/e73755c52fb451f2054196404ccc468577f8da023b3a48c80bce29ee5d4a/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:70c845b64a033a20c44ed26bc890eeb851215148cc3e696499f5f65529afb6cb", size = 2217833, upload-time = "2025-09-08T21:06:15.666Z" },
- { url = "https://files.pythonhosted.org/packages/20/14/7399c18c460e72d1b754e80dafc9f65cb42a46cc8f29cd57d11c0c4acc94/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:26db0e815213d04234298dea0d884d92b9cb8d4ba954cab7cf67a35853128a33", size = 3159012, upload-time = "2025-09-08T21:06:17.631Z" },
- { url = "https://files.pythonhosted.org/packages/f8/5e/24f0226ddb5440cabd88605d2491f99ae3748a6b27b0bc9703772892ced7/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:6ad3395a416f8b126ff11c788531f157c7debeb626f9d897c153ff8980da10fb", size = 1227032, upload-time = "2025-09-08T21:06:21.06Z" },
- { url = "https://files.pythonhosted.org/packages/40/43/1d54a4ad1a5fac2394d5f28a3108e2bf73c26f4f23663535e3139cfede9b/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:61c5b9ab6f730e6478aa2def566223712d121c6f69a94c7cc002044799442afd", size = 2395054, upload-time = "2025-09-08T21:06:23.482Z" },
- { url = "https://files.pythonhosted.org/packages/0c/71/e9864cd5b0f086c4a03791f5dfe0155a1b132f789fe19b0c76fbabd20513/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:13e0ea3d0c533969158727d1bb7a08c2cc9a816ab83f8f0dcfde7e38938ce3e6", size = 2524741, upload-time = "2025-09-08T21:06:26.825Z" },
- { url = "https://files.pythonhosted.org/packages/b2/0c/53f88286b912faf4a3b2619a60df4f4a67bd0edcf5970d7b0c1143501f0c/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6325ca435b99f4001aac919ab8922ac464999b100173317defb83eae34e82139", size = 2785311, upload-time = "2025-09-08T21:06:29.471Z" },
- { url = "https://files.pythonhosted.org/packages/53/9a/229c26dc4f91bad323f07304ee5ccbc28f0d21c76047a1e4f813187d0bad/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:07a9fad3247e68798424bdc116c1094e88ecfabc17b29edf42a777520347648e", size = 3303630, upload-time = "2025-09-08T21:06:31.094Z" },
- { url = "https://files.pythonhosted.org/packages/05/de/20e330d6d58cbf83da914accd9e303048b7abae2f198886f65a344b69695/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8ff5dbe78db0a10c1f916368e21d328935896240f71f721e073cf6c4c8cdedd", size = 4262364, upload-time = "2025-09-08T21:06:32.877Z" },
- { url = "https://files.pythonhosted.org/packages/0d/f2/0024cc8eead108c4c29337abe133d72ddf3406ce9bbfbcfc110414a7ea07/rapidfuzz-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8d69f470d63ee824132ecd80b1974e1d15dd9df5193916901d7860cef081a260", size = 1926515, upload-time = "2025-09-08T21:06:39.834Z" },
- { url = "https://files.pythonhosted.org/packages/12/ae/6cb211f8930bea20fa989b23f31ee7f92940caaf24e3e510d242a1b28de4/rapidfuzz-3.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6f571d20152fc4833b7b5e781b36d5e4f31f3b5a596a3d53cf66a1bd4436b4f4", size = 1388431, upload-time = "2025-09-08T21:06:41.73Z" },
- { url = "https://files.pythonhosted.org/packages/39/88/bfec24da0607c39e5841ced5594ea1b907d20f83adf0e3ee87fa454a425b/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61d77e09b2b6bc38228f53b9ea7972a00722a14a6048be9a3672fb5cb08bad3a", size = 1375664, upload-time = "2025-09-08T21:06:43.737Z" },
- { url = "https://files.pythonhosted.org/packages/f4/43/9f282ba539e404bdd7052c7371d3aaaa1a9417979d2a1d8332670c7f385a/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8b41d95ef86a6295d353dc3bb6c80550665ba2c3bef3a9feab46074d12a9af8f", size = 1668113, upload-time = "2025-09-08T21:06:45.758Z" },
- { url = "https://files.pythonhosted.org/packages/7f/2f/0b3153053b1acca90969eb0867922ac8515b1a8a48706a3215c2db60e87c/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0591df2e856ad583644b40a2b99fb522f93543c65e64b771241dda6d1cfdc96b", size = 2212875, upload-time = "2025-09-08T21:06:47.447Z" },
- { url = "https://files.pythonhosted.org/packages/f8/9b/623001dddc518afaa08ed1fbbfc4005c8692b7a32b0f08b20c506f17a770/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f277801f55b2f3923ef2de51ab94689a0671a4524bf7b611de979f308a54cd6f", size = 3161181, upload-time = "2025-09-08T21:06:49.179Z" },
- { url = "https://files.pythonhosted.org/packages/ce/b7/d8404ed5ad56eb74463e5ebf0a14f0019d7eb0e65e0323f709fe72e0884c/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:893fdfd4f66ebb67f33da89eb1bd1674b7b30442fdee84db87f6cb9074bf0ce9", size = 1225495, upload-time = "2025-09-08T21:06:51.056Z" },
- { url = "https://files.pythonhosted.org/packages/2c/6c/b96af62bc7615d821e3f6b47563c265fd7379d7236dfbc1cbbcce8beb1d2/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fe2651258c1f1afa9b66f44bf82f639d5f83034f9804877a1bbbae2120539ad1", size = 2396294, upload-time = "2025-09-08T21:06:53.063Z" },
- { url = "https://files.pythonhosted.org/packages/7f/b7/c60c9d22a7debed8b8b751f506a4cece5c22c0b05e47a819d6b47bc8c14e/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ace21f7a78519d8e889b1240489cd021c5355c496cb151b479b741a4c27f0a25", size = 2529629, upload-time = "2025-09-08T21:06:55.188Z" },
- { url = "https://files.pythonhosted.org/packages/25/94/a9ec7ccb28381f14de696ffd51c321974762f137679df986f5375d35264f/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:cb5acf24590bc5e57027283b015950d713f9e4d155fda5cfa71adef3b3a84502", size = 2782960, upload-time = "2025-09-08T21:06:57.339Z" },
- { url = "https://files.pythonhosted.org/packages/68/80/04e5276d223060eca45250dbf79ea39940c0be8b3083661d58d57572c2c5/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:67ea46fa8cc78174bad09d66b9a4b98d3068e85de677e3c71ed931a1de28171f", size = 3298427, upload-time = "2025-09-08T21:06:59.319Z" },
- { url = "https://files.pythonhosted.org/packages/4a/63/24759b2a751562630b244e68ccaaf7a7525c720588fcc77c964146355aee/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:44e741d785de57d1a7bae03599c1cbc7335d0b060a35e60c44c382566e22782e", size = 4267736, upload-time = "2025-09-08T21:07:01.31Z" },
- { url = "https://files.pythonhosted.org/packages/e2/cb/1ad9a76d974d153783f8e0be8dbe60ec46488fac6e519db804e299e0da06/rapidfuzz-3.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d937dbeda71c921ef6537c6d41a84f1b8112f107589c9977059de57a1d726dd6", size = 1945173, upload-time = "2025-09-08T21:07:08.893Z" },
- { url = "https://files.pythonhosted.org/packages/d9/61/959ed7460941d8a81cbf6552b9c45564778a36cf5e5aa872558b30fc02b2/rapidfuzz-3.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a2d80cc1a4fcc7e259ed4f505e70b36433a63fa251f1bb69ff279fe376c5efd", size = 1413949, upload-time = "2025-09-08T21:07:11.033Z" },
- { url = "https://files.pythonhosted.org/packages/d6/36/53debca45fbe693bd6181fb05b6a2fd561c87669edb82ec0d7c1961a43f0/rapidfuzz-3.14.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e84d9a844dc2e4d5c4cabd14c096374ead006583304333c14a6fbde51f612a44", size = 1926336, upload-time = "2025-09-08T21:07:18.809Z" },
- { url = "https://files.pythonhosted.org/packages/ae/32/b874f48609665fcfeaf16cbaeb2bbc210deef2b88e996c51cfc36c3eb7c3/rapidfuzz-3.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:40301b93b99350edcd02dbb22e37ca5f2a75d0db822e9b3c522da451a93d6f27", size = 1389653, upload-time = "2025-09-08T21:07:20.667Z" },
- { url = "https://files.pythonhosted.org/packages/97/25/f6c5a1ff4ec11edadacb270e70b8415f51fa2f0d5730c2c552b81651fbe3/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fedd5097a44808dddf341466866e5c57a18a19a336565b4ff50aa8f09eb528f6", size = 1380911, upload-time = "2025-09-08T21:07:22.584Z" },
- { url = "https://files.pythonhosted.org/packages/d8/f3/d322202ef8fab463759b51ebfaa33228100510c82e6153bd7a922e150270/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e3e61c9e80d8c26709d8aa5c51fdd25139c81a4ab463895f8a567f8347b0548", size = 1673515, upload-time = "2025-09-08T21:07:24.417Z" },
- { url = "https://files.pythonhosted.org/packages/8d/b9/6b2a97f4c6be96cac3749f32301b8cdf751ce5617b1c8934c96586a0662b/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da011a373722fac6e64687297a1d17dc8461b82cb12c437845d5a5b161bc24b9", size = 2219394, upload-time = "2025-09-08T21:07:26.402Z" },
- { url = "https://files.pythonhosted.org/packages/11/bf/afb76adffe4406e6250f14ce48e60a7eb05d4624945bd3c044cfda575fbc/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5967d571243cfb9ad3710e6e628ab68c421a237b76e24a67ac22ee0ff12784d6", size = 3163582, upload-time = "2025-09-08T21:07:28.878Z" },
- { url = "https://files.pythonhosted.org/packages/42/34/e6405227560f61e956cb4c5de653b0f874751c5ada658d3532d6c1df328e/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:474f416cbb9099676de54aa41944c154ba8d25033ee460f87bb23e54af6d01c9", size = 1221116, upload-time = "2025-09-08T21:07:30.8Z" },
- { url = "https://files.pythonhosted.org/packages/55/e6/5b757e2e18de384b11d1daf59608453f0baf5d5d8d1c43e1a964af4dc19a/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ae2d57464b59297f727c4e201ea99ec7b13935f1f056c753e8103da3f2fc2404", size = 2402670, upload-time = "2025-09-08T21:07:32.702Z" },
- { url = "https://files.pythonhosted.org/packages/43/c4/d753a415fe54531aa882e288db5ed77daaa72e05c1a39e1cbac00d23024f/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:57047493a1f62f11354c7143c380b02f1b355c52733e6b03adb1cb0fe8fb8816", size = 2521659, upload-time = "2025-09-08T21:07:35.218Z" },
- { url = "https://files.pythonhosted.org/packages/cd/28/d4e7fe1515430db98f42deb794c7586a026d302fe70f0216b638d89cf10f/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:4acc20776f225ee37d69517a237c090b9fa7e0836a0b8bc58868e9168ba6ef6f", size = 2788552, upload-time = "2025-09-08T21:07:37.188Z" },
- { url = "https://files.pythonhosted.org/packages/4f/00/eab05473af7a2cafb4f3994bc6bf408126b8eec99a569aac6254ac757db4/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4373f914ff524ee0146919dea96a40a8200ab157e5a15e777a74a769f73d8a4a", size = 3306261, upload-time = "2025-09-08T21:07:39.624Z" },
- { url = "https://files.pythonhosted.org/packages/d1/31/2feb8dfcfcff6508230cd2ccfdde7a8bf988c6fda142fe9ce5d3eb15704d/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:37017b84953927807847016620d61251fe236bd4bcb25e27b6133d955bb9cafb", size = 4269522, upload-time = "2025-09-08T21:07:41.663Z" },
- { url = "https://files.pythonhosted.org/packages/b7/e7/f0a242687143cebd33a1fb165226b73bd9496d47c5acfad93de820a18fa8/rapidfuzz-3.14.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:60879fcae2f7618403c4c746a9a3eec89327d73148fb6e89a933b78442ff0669", size = 1945182, upload-time = "2025-09-08T21:07:51.84Z" },
- { url = "https://files.pythonhosted.org/packages/96/29/ca8a3f8525e3d0e7ab49cb927b5fb4a54855f794c9ecd0a0b60a6c96a05f/rapidfuzz-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f94d61e44db3fc95a74006a394257af90fa6e826c900a501d749979ff495d702", size = 1413946, upload-time = "2025-09-08T21:07:53.702Z" },
- { url = "https://files.pythonhosted.org/packages/6d/10/0ed838b296fdac08ecbaa3a220fb4f1d887ff41b0be44fe8eade45bb650e/rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:673ce55a9be5b772dade911909e42382c0828b8a50ed7f9168763fa6b9f7054d", size = 1860246, upload-time = "2025-09-08T21:08:02.762Z" },
- { url = "https://files.pythonhosted.org/packages/a4/70/a08f4a86387dec97508ead51cc7a4b3130d4e62ac0eae938a6d8e1feff14/rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:45c62ada1980ebf4c64c4253993cc8daa018c63163f91db63bb3af69cb74c2e3", size = 1336749, upload-time = "2025-09-08T21:08:04.783Z" },
- { url = "https://files.pythonhosted.org/packages/05/c7/1b17347e30f2b50dd976c54641aa12003569acb1bdaabf45a5cc6f471c58/rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4a21ccdf1bd7d57a1009030527ba8fae1c74bf832d0a08f6b67de8f5c506c96f", size = 1862602, upload-time = "2025-09-08T21:08:09.088Z" },
- { url = "https://files.pythonhosted.org/packages/09/cf/95d0dacac77eda22499991bd5f304c77c5965fb27348019a48ec3fe4a3f6/rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:589fb0af91d3aff318750539c832ea1100dbac2c842fde24e42261df443845f6", size = 1339548, upload-time = "2025-09-08T21:08:11.059Z" },
+ { url = "https://files.pythonhosted.org/packages/69/d1/0efa42a602ed466d3ca1c462eed5d62015c3fd2a402199e2c4b87aa5aa25/rapidfuzz-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b9fcd4d751a4fffa17aed1dde41647923c72c74af02459ad1222e3b0022da3a1", size = 1952376, upload-time = "2025-11-01T11:52:29.175Z" },
+ { url = "https://files.pythonhosted.org/packages/be/00/37a169bb28b23850a164e6624b1eb299e1ad73c9e7c218ee15744e68d628/rapidfuzz-3.14.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ad73afb688b36864a8d9b7344a9cf6da186c471e5790cbf541a635ee0f457f2", size = 1390903, upload-time = "2025-11-01T11:52:31.239Z" },
+ { url = "https://files.pythonhosted.org/packages/3c/91/b37207cbbdb6eaafac3da3f55ea85287b27745cb416e75e15769b7d8abe8/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c5fb2d978a601820d2cfd111e2c221a9a7bfdf84b41a3ccbb96ceef29f2f1ac7", size = 1385655, upload-time = "2025-11-01T11:52:32.852Z" },
+ { url = "https://files.pythonhosted.org/packages/f2/bb/ca53e518acf43430be61f23b9c5987bd1e01e74fcb7a9ee63e00f597aefb/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1d83b8b712fa37e06d59f29a4b49e2e9e8635e908fbc21552fe4d1163db9d2a1", size = 3164708, upload-time = "2025-11-01T11:52:34.618Z" },
+ { url = "https://files.pythonhosted.org/packages/df/e1/7667bf2db3e52adb13cb933dd4a6a2efc66045d26fa150fc0feb64c26d61/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:dc8c07801df5206b81ed6bd6c35cb520cf9b6c64b9b0d19d699f8633dc942897", size = 1221106, upload-time = "2025-11-01T11:52:36.069Z" },
+ { url = "https://files.pythonhosted.org/packages/05/8a/84d9f2d46a2c8eb2ccae81747c4901fa10fe4010aade2d57ce7b4b8e02ec/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c71ce6d4231e5ef2e33caa952bfe671cb9fd42e2afb11952df9fad41d5c821f9", size = 2406048, upload-time = "2025-11-01T11:52:37.936Z" },
+ { url = "https://files.pythonhosted.org/packages/3c/a9/a0b7b7a1b81a020c034eb67c8e23b7e49f920004e295378de3046b0d99e1/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:0e38828d1381a0cceb8a4831212b2f673d46f5129a1897b0451c883eaf4a1747", size = 2527020, upload-time = "2025-11-01T11:52:39.657Z" },
+ { url = "https://files.pythonhosted.org/packages/b4/bc/416df7d108b99b4942ba04dd4cf73c45c3aadb3ef003d95cad78b1d12eb9/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da2a007434323904719158e50f3076a4dadb176ce43df28ed14610c773cc9825", size = 4273958, upload-time = "2025-11-01T11:52:41.017Z" },
+ { url = "https://files.pythonhosted.org/packages/76/25/5b0a33ad3332ee1213068c66f7c14e9e221be90bab434f0cb4defa9d6660/rapidfuzz-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea2d113e260a5da0c4003e0a5e9fdf24a9dc2bb9eaa43abd030a1e46ce7837d", size = 1953885, upload-time = "2025-11-01T11:52:47.75Z" },
+ { url = "https://files.pythonhosted.org/packages/2d/ab/f1181f500c32c8fcf7c966f5920c7e56b9b1d03193386d19c956505c312d/rapidfuzz-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6c31a4aa68cfa75d7eede8b0ed24b9e458447db604c2db53f358be9843d81d3", size = 1390200, upload-time = "2025-11-01T11:52:49.491Z" },
+ { url = "https://files.pythonhosted.org/packages/14/2a/0f2de974ececad873865c6bb3ea3ad07c976ac293d5025b2d73325aac1d4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02821366d928e68ddcb567fed8723dad7ea3a979fada6283e6914d5858674850", size = 1389319, upload-time = "2025-11-01T11:52:51.224Z" },
+ { url = "https://files.pythonhosted.org/packages/ed/69/309d8f3a0bb3031fd9b667174cc4af56000645298af7c2931be5c3d14bb4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cfe8df315ab4e6db4e1be72c5170f8e66021acde22cd2f9d04d2058a9fd8162e", size = 3178495, upload-time = "2025-11-01T11:52:53.005Z" },
+ { url = "https://files.pythonhosted.org/packages/10/b7/f9c44a99269ea5bf6fd6a40b84e858414b6e241288b9f2b74af470d222b1/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:769f31c60cd79420188fcdb3c823227fc4a6deb35cafec9d14045c7f6743acae", size = 1228443, upload-time = "2025-11-01T11:52:54.991Z" },
+ { url = "https://files.pythonhosted.org/packages/f2/0a/3b3137abac7f19c9220e14cd7ce993e35071a7655e7ef697785a3edfea1a/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54fa03062124e73086dae66a3451c553c1e20a39c077fd704dc7154092c34c63", size = 2411998, upload-time = "2025-11-01T11:52:56.629Z" },
+ { url = "https://files.pythonhosted.org/packages/f3/b6/983805a844d44670eaae63831024cdc97ada4e9c62abc6b20703e81e7f9b/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:834d1e818005ed0d4ae38f6b87b86fad9b0a74085467ece0727d20e15077c094", size = 2530120, upload-time = "2025-11-01T11:52:58.298Z" },
+ { url = "https://files.pythonhosted.org/packages/b4/cc/2c97beb2b1be2d7595d805682472f1b1b844111027d5ad89b65e16bdbaaa/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:948b00e8476a91f510dd1ec07272efc7d78c275d83b630455559671d4e33b678", size = 4283129, upload-time = "2025-11-01T11:53:00.188Z" },
+ { url = "https://files.pythonhosted.org/packages/fa/8e/3c215e860b458cfbedb3ed73bc72e98eb7e0ed72f6b48099604a7a3260c2/rapidfuzz-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:685c93ea961d135893b5984a5a9851637d23767feabe414ec974f43babbd8226", size = 1945306, upload-time = "2025-11-01T11:53:06.452Z" },
+ { url = "https://files.pythonhosted.org/packages/36/d9/31b33512015c899f4a6e6af64df8dfe8acddf4c8b40a4b3e0e6e1bcd00e5/rapidfuzz-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fa7c8f26f009f8c673fbfb443792f0cf8cf50c4e18121ff1e285b5e08a94fbdb", size = 1390788, upload-time = "2025-11-01T11:53:08.721Z" },
+ { url = "https://files.pythonhosted.org/packages/a9/67/2ee6f8de6e2081ccd560a571d9c9063184fe467f484a17fa90311a7f4a2e/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57f878330c8d361b2ce76cebb8e3e1dc827293b6abf404e67d53260d27b5d941", size = 1374580, upload-time = "2025-11-01T11:53:10.164Z" },
+ { url = "https://files.pythonhosted.org/packages/30/83/80d22997acd928eda7deadc19ccd15883904622396d6571e935993e0453a/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c5f545f454871e6af05753a0172849c82feaf0f521c5ca62ba09e1b382d6382", size = 3154947, upload-time = "2025-11-01T11:53:12.093Z" },
+ { url = "https://files.pythonhosted.org/packages/5b/cf/9f49831085a16384695f9fb096b99662f589e30b89b4a589a1ebc1a19d34/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:07aa0b5d8863e3151e05026a28e0d924accf0a7a3b605da978f0359bb804df43", size = 1223872, upload-time = "2025-11-01T11:53:13.664Z" },
+ { url = "https://files.pythonhosted.org/packages/c8/0f/41ee8034e744b871c2e071ef0d360686f5ccfe5659f4fd96c3ec406b3c8b/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73b07566bc7e010e7b5bd490fb04bb312e820970180df6b5655e9e6224c137db", size = 2392512, upload-time = "2025-11-01T11:53:15.109Z" },
+ { url = "https://files.pythonhosted.org/packages/da/86/280038b6b0c2ccec54fb957c732ad6b41cc1fd03b288d76545b9cf98343f/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:6de00eb84c71476af7d3110cf25d8fe7c792d7f5fa86764ef0b4ca97e78ca3ed", size = 2521398, upload-time = "2025-11-01T11:53:17.146Z" },
+ { url = "https://files.pythonhosted.org/packages/fa/7b/05c26f939607dca0006505e3216248ae2de631e39ef94dd63dbbf0860021/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d7843a1abf0091773a530636fdd2a49a41bcae22f9910b86b4f903e76ddc82dc", size = 4259416, upload-time = "2025-11-01T11:53:19.34Z" },
+ { url = "https://files.pythonhosted.org/packages/e4/4f/0d94d09646853bd26978cb3a7541b6233c5760687777fa97da8de0d9a6ac/rapidfuzz-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dbcb726064b12f356bf10fffdb6db4b6dce5390b23627c08652b3f6e49aa56ae", size = 1939646, upload-time = "2025-11-01T11:53:25.292Z" },
+ { url = "https://files.pythonhosted.org/packages/b6/eb/f96aefc00f3bbdbab9c0657363ea8437a207d7545ac1c3789673e05d80bd/rapidfuzz-3.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1704fc70d214294e554a2421b473779bcdeef715881c5e927dc0f11e1692a0ff", size = 1385512, upload-time = "2025-11-01T11:53:27.594Z" },
+ { url = "https://files.pythonhosted.org/packages/26/34/71c4f7749c12ee223dba90017a5947e8f03731a7cc9f489b662a8e9e643d/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc65e72790ddfd310c2c8912b45106e3800fefe160b0c2ef4d6b6fec4e826457", size = 1373571, upload-time = "2025-11-01T11:53:29.096Z" },
+ { url = "https://files.pythonhosted.org/packages/32/00/ec8597a64f2be301ce1ee3290d067f49f6a7afb226b67d5f15b56d772ba5/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e38c1305cffae8472572a0584d4ffc2f130865586a81038ca3965301f7c97c", size = 3156759, upload-time = "2025-11-01T11:53:30.777Z" },
+ { url = "https://files.pythonhosted.org/packages/61/d5/b41eeb4930501cc899d5a9a7b5c9a33d85a670200d7e81658626dcc0ecc0/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:e195a77d06c03c98b3fc06b8a28576ba824392ce40de8c708f96ce04849a052e", size = 1222067, upload-time = "2025-11-01T11:53:32.334Z" },
+ { url = "https://files.pythonhosted.org/packages/2a/7d/6d9abb4ffd1027c6ed837b425834f3bed8344472eb3a503ab55b3407c721/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1b7ef2f4b8583a744338a18f12c69693c194fb6777c0e9ada98cd4d9e8f09d10", size = 2394775, upload-time = "2025-11-01T11:53:34.24Z" },
+ { url = "https://files.pythonhosted.org/packages/15/ce/4f3ab4c401c5a55364da1ffff8cc879fc97b4e5f4fa96033827da491a973/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a2135b138bcdcb4c3742d417f215ac2d8c2b87bde15b0feede231ae95f09ec41", size = 2526123, upload-time = "2025-11-01T11:53:35.779Z" },
+ { url = "https://files.pythonhosted.org/packages/c1/4b/54f804975376a328f57293bd817c12c9036171d15cf7292032e3f5820b2d/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:33a325ed0e8e1aa20c3e75f8ab057a7b248fdea7843c2a19ade0008906c14af0", size = 4262874, upload-time = "2025-11-01T11:53:37.866Z" },
+ { url = "https://files.pythonhosted.org/packages/92/13/a486369e63ff3c1a58444d16b15c5feb943edd0e6c28a1d7d67cb8946b8f/rapidfuzz-3.14.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a0a28add871425c2fe94358c6300bbeb0bc2ed828ca003420ac6825408f5a424", size = 1967702, upload-time = "2025-11-01T11:53:44.554Z" },
+ { url = "https://files.pythonhosted.org/packages/f1/82/efad25e260b7810f01d6b69122685e355bed78c94a12784bac4e0beb2afb/rapidfuzz-3.14.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:010e12e2411a4854b0434f920e72b717c43f8ec48d57e7affe5c42ecfa05dd0e", size = 1410702, upload-time = "2025-11-01T11:53:46.066Z" },
+ { url = "https://files.pythonhosted.org/packages/ba/1a/34c977b860cde91082eae4a97ae503f43e0d84d4af301d857679b66f9869/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfc3d57abd83c734d1714ec39c88a34dd69c85474918ebc21296f1e61eb5ca8", size = 1382337, upload-time = "2025-11-01T11:53:47.62Z" },
+ { url = "https://files.pythonhosted.org/packages/88/74/f50ea0e24a5880a9159e8fd256b84d8f4634c2f6b4f98028bdd31891d907/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89acb8cbb52904f763e5ac238083b9fc193bed8d1f03c80568b20e4cef43a519", size = 3165563, upload-time = "2025-11-01T11:53:49.216Z" },
+ { url = "https://files.pythonhosted.org/packages/e8/7a/e744359404d7737049c26099423fc54bcbf303de5d870d07d2fb1410f567/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_31_armv7l.whl", hash = "sha256:7d9af908c2f371bfb9c985bd134e295038e3031e666e4b2ade1e7cb7f5af2f1a", size = 1214727, upload-time = "2025-11-01T11:53:50.883Z" },
+ { url = "https://files.pythonhosted.org/packages/d3/2e/87adfe14ce75768ec6c2b8acd0e05e85e84be4be5e3d283cdae360afc4fe/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:1f1925619627f8798f8c3a391d81071336942e5fe8467bc3c567f982e7ce2897", size = 2403349, upload-time = "2025-11-01T11:53:52.322Z" },
+ { url = "https://files.pythonhosted.org/packages/70/17/6c0b2b2bff9c8b12e12624c07aa22e922b0c72a490f180fa9183d1ef2c75/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:152555187360978119e98ce3e8263d70dd0c40c7541193fc302e9b7125cf8f58", size = 2507596, upload-time = "2025-11-01T11:53:53.835Z" },
+ { url = "https://files.pythonhosted.org/packages/c3/d1/87852a7cbe4da7b962174c749a47433881a63a817d04f3e385ea9babcd9e/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:52619d25a09546b8db078981ca88939d72caa6b8701edd8b22e16482a38e799f", size = 4273595, upload-time = "2025-11-01T11:53:55.961Z" },
+ { url = "https://files.pythonhosted.org/packages/32/6f/1b88aaeade83abc5418788f9e6b01efefcd1a69d65ded37d89cd1662be41/rapidfuzz-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:442125473b247227d3f2de807a11da6c08ccf536572d1be943f8e262bae7e4ea", size = 1942086, upload-time = "2025-11-01T11:54:02.592Z" },
+ { url = "https://files.pythonhosted.org/packages/a0/2c/b23861347436cb10f46c2bd425489ec462790faaa360a54a7ede5f78de88/rapidfuzz-3.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ec0c8c0c3d4f97ced46b2e191e883f8c82dbbf6d5ebc1842366d7eff13cd5a6", size = 1386993, upload-time = "2025-11-01T11:54:04.12Z" },
+ { url = "https://files.pythonhosted.org/packages/83/86/5d72e2c060aa1fbdc1f7362d938f6b237dff91f5b9fc5dd7cc297e112250/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2dc37bc20272f388b8c3a4eba4febc6e77e50a8f450c472def4751e7678f55e4", size = 1379126, upload-time = "2025-11-01T11:54:05.777Z" },
+ { url = "https://files.pythonhosted.org/packages/c9/bc/ef2cee3e4d8b3fc22705ff519f0d487eecc756abdc7c25d53686689d6cf2/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dee362e7e79bae940a5e2b3f6d09c6554db6a4e301cc68343886c08be99844f1", size = 3159304, upload-time = "2025-11-01T11:54:07.351Z" },
+ { url = "https://files.pythonhosted.org/packages/a0/36/dc5f2f62bbc7bc90be1f75eeaf49ed9502094bb19290dfb4747317b17f12/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:4b39921df948388a863f0e267edf2c36302983459b021ab928d4b801cbe6a421", size = 1218207, upload-time = "2025-11-01T11:54:09.641Z" },
+ { url = "https://files.pythonhosted.org/packages/df/7e/8f4be75c1bc62f47edf2bbbe2370ee482fae655ebcc4718ac3827ead3904/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:beda6aa9bc44d1d81242e7b291b446be352d3451f8217fcb068fc2933927d53b", size = 2401245, upload-time = "2025-11-01T11:54:11.543Z" },
+ { url = "https://files.pythonhosted.org/packages/05/38/f7c92759e1bb188dd05b80d11c630ba59b8d7856657baf454ff56059c2ab/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:6a014ba09657abfcfeed64b7d09407acb29af436d7fc075b23a298a7e4a6b41c", size = 2518308, upload-time = "2025-11-01T11:54:13.134Z" },
+ { url = "https://files.pythonhosted.org/packages/c7/ac/85820f70fed5ecb5f1d9a55f1e1e2090ef62985ef41db289b5ac5ec56e28/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:32eeafa3abce138bb725550c0e228fc7eaeec7059aa8093d9cbbec2b58c2371a", size = 4265011, upload-time = "2025-11-01T11:54:15.087Z" },
+ { url = "https://files.pythonhosted.org/packages/03/1b/6b6084576ba87bf21877c77218a0c97ba98cb285b0c02eaaee3acd7c4513/rapidfuzz-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:cec3c0da88562727dd5a5a364bd9efeb535400ff0bfb1443156dd139a1dd7b50", size = 1968658, upload-time = "2025-11-01T11:54:22.25Z" },
+ { url = "https://files.pythonhosted.org/packages/38/c0/fb02a0db80d95704b0a6469cc394e8c38501abf7e1c0b2afe3261d1510c2/rapidfuzz-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d1fa009f8b1100e4880868137e7bf0501422898f7674f2adcd85d5a67f041296", size = 1410742, upload-time = "2025-11-01T11:54:23.863Z" },
+ { url = "https://files.pythonhosted.org/packages/a4/72/3fbf12819fc6afc8ec75a45204013b40979d068971e535a7f3512b05e765/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b86daa7419b5e8b180690efd1fdbac43ff19230803282521c5b5a9c83977655", size = 1382810, upload-time = "2025-11-01T11:54:25.571Z" },
+ { url = "https://files.pythonhosted.org/packages/0f/18/0f1991d59bb7eee28922a00f79d83eafa8c7bfb4e8edebf4af2a160e7196/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c7bd1816db05d6c5ffb3a4df0a2b7b56fb8c81ef584d08e37058afa217da91b1", size = 3166349, upload-time = "2025-11-01T11:54:27.195Z" },
+ { url = "https://files.pythonhosted.org/packages/0d/f0/baa958b1989c8f88c78bbb329e969440cf330b5a01a982669986495bb980/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:33da4bbaf44e9755b0ce192597f3bde7372fe2e381ab305f41b707a95ac57aa7", size = 1214994, upload-time = "2025-11-01T11:54:28.821Z" },
+ { url = "https://files.pythonhosted.org/packages/e4/a0/cd12ec71f9b2519a3954febc5740291cceabc64c87bc6433afcb36259f3b/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3fecce764cf5a991ee2195a844196da840aba72029b2612f95ac68a8b74946bf", size = 2403919, upload-time = "2025-11-01T11:54:30.393Z" },
+ { url = "https://files.pythonhosted.org/packages/0b/ce/019bd2176c1644098eced4f0595cb4b3ef52e4941ac9a5854f209d0a6e16/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:ecd7453e02cf072258c3a6b8e930230d789d5d46cc849503729f9ce475d0e785", size = 2508346, upload-time = "2025-11-01T11:54:32.048Z" },
+ { url = "https://files.pythonhosted.org/packages/23/f8/be16c68e2c9e6c4f23e8f4adbb7bccc9483200087ed28ff76c5312da9b14/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ea188aa00e9bcae8c8411f006a5f2f06c4607a02f24eab0d8dc58566aa911f35", size = 4274105, upload-time = "2025-11-01T11:54:33.701Z" },
+ { url = "https://files.pythonhosted.org/packages/c9/33/b5bd6475c7c27164b5becc9b0e3eb978f1e3640fea590dd3dced6006ee83/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7cf174b52cb3ef5d49e45d0a1133b7e7d0ecf770ed01f97ae9962c5c91d97d23", size = 1888499, upload-time = "2025-11-01T11:54:42.094Z" },
+ { url = "https://files.pythonhosted.org/packages/30/d2/89d65d4db4bb931beade9121bc71ad916b5fa9396e807d11b33731494e8e/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:442cba39957a008dfc5bdef21a9c3f4379e30ffb4e41b8555dbaf4887eca9300", size = 1336747, upload-time = "2025-11-01T11:54:43.957Z" },
+ { url = "https://files.pythonhosted.org/packages/85/33/cd87d92b23f0b06e8914a61cea6850c6d495ca027f669fab7a379041827a/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1faa0f8f76ba75fd7b142c984947c280ef6558b5067af2ae9b8729b0a0f99ede", size = 1352187, upload-time = "2025-11-01T11:54:45.518Z" },
+ { url = "https://files.pythonhosted.org/packages/22/20/9d30b4a1ab26aac22fff17d21dec7e9089ccddfe25151d0a8bb57001dc3d/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e6eefec45625c634926a9fd46c9e4f31118ac8f3156fff9494422cee45207e6", size = 3101472, upload-time = "2025-11-01T11:54:47.255Z" },
]
[[package]]
@@ -3379,19 +3371,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
]
-[[package]]
-name = "requests-oauthlib"
-version = "2.0.0"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
- { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" },
-]
-
[[package]]
name = "rich"
version = "14.1.0"
@@ -3523,25 +3502,25 @@ wheels = [
[[package]]
name = "ruff"
-version = "0.14.0"
+version = "0.14.5"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/41/b9/9bd84453ed6dd04688de9b3f3a4146a1698e8faae2ceeccce4e14c67ae17/ruff-0.14.0.tar.gz", hash = "sha256:62ec8969b7510f77945df916de15da55311fade8d6050995ff7f680afe582c57", size = 5452071, upload-time = "2025-10-07T18:21:55.763Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/82/fa/fbb67a5780ae0f704876cb8ac92d6d76da41da4dc72b7ed3565ab18f2f52/ruff-0.14.5.tar.gz", hash = "sha256:8d3b48d7d8aad423d3137af7ab6c8b1e38e4de104800f0d596990f6ada1a9fc1", size = 5615944, upload-time = "2025-11-13T19:58:51.155Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/3a/4e/79d463a5f80654e93fa653ebfb98e0becc3f0e7cf6219c9ddedf1e197072/ruff-0.14.0-py3-none-linux_armv6l.whl", hash = "sha256:58e15bffa7054299becf4bab8a1187062c6f8cafbe9f6e39e0d5aface455d6b3", size = 12494532, upload-time = "2025-10-07T18:21:00.373Z" },
- { url = "https://files.pythonhosted.org/packages/ee/40/e2392f445ed8e02aa6105d49db4bfff01957379064c30f4811c3bf38aece/ruff-0.14.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:838d1b065f4df676b7c9957992f2304e41ead7a50a568185efd404297d5701e8", size = 13160768, upload-time = "2025-10-07T18:21:04.73Z" },
- { url = "https://files.pythonhosted.org/packages/75/da/2a656ea7c6b9bd14c7209918268dd40e1e6cea65f4bb9880eaaa43b055cd/ruff-0.14.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:703799d059ba50f745605b04638fa7e9682cc3da084b2092feee63500ff3d9b8", size = 12363376, upload-time = "2025-10-07T18:21:07.833Z" },
- { url = "https://files.pythonhosted.org/packages/42/e2/1ffef5a1875add82416ff388fcb7ea8b22a53be67a638487937aea81af27/ruff-0.14.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ba9a8925e90f861502f7d974cc60e18ca29c72bb0ee8bfeabb6ade35a3abde7", size = 12608055, upload-time = "2025-10-07T18:21:10.72Z" },
- { url = "https://files.pythonhosted.org/packages/4a/32/986725199d7cee510d9f1dfdf95bf1efc5fa9dd714d0d85c1fb1f6be3bc3/ruff-0.14.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e41f785498bd200ffc276eb9e1570c019c1d907b07cfb081092c8ad51975bbe7", size = 12318544, upload-time = "2025-10-07T18:21:13.741Z" },
- { url = "https://files.pythonhosted.org/packages/9a/ed/4969cefd53315164c94eaf4da7cfba1f267dc275b0abdd593d11c90829a3/ruff-0.14.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30a58c087aef4584c193aebf2700f0fbcfc1e77b89c7385e3139956fa90434e2", size = 14001280, upload-time = "2025-10-07T18:21:16.411Z" },
- { url = "https://files.pythonhosted.org/packages/ab/ad/96c1fc9f8854c37681c9613d825925c7f24ca1acfc62a4eb3896b50bacd2/ruff-0.14.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f8d07350bc7af0a5ce8812b7d5c1a7293cf02476752f23fdfc500d24b79b783c", size = 15027286, upload-time = "2025-10-07T18:21:19.577Z" },
- { url = "https://files.pythonhosted.org/packages/b3/00/1426978f97df4fe331074baf69615f579dc4e7c37bb4c6f57c2aad80c87f/ruff-0.14.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eec3bbbf3a7d5482b5c1f42d5fc972774d71d107d447919fca620b0be3e3b75e", size = 14451506, upload-time = "2025-10-07T18:21:22.779Z" },
- { url = "https://files.pythonhosted.org/packages/58/d5/9c1cea6e493c0cf0647674cca26b579ea9d2a213b74b5c195fbeb9678e15/ruff-0.14.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16b68e183a0e28e5c176d51004aaa40559e8f90065a10a559176713fcf435206", size = 13437384, upload-time = "2025-10-07T18:21:25.758Z" },
- { url = "https://files.pythonhosted.org/packages/29/b4/4cd6a4331e999fc05d9d77729c95503f99eae3ba1160469f2b64866964e3/ruff-0.14.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb732d17db2e945cfcbbc52af0143eda1da36ca8ae25083dd4f66f1542fdf82e", size = 13447976, upload-time = "2025-10-07T18:21:28.83Z" },
- { url = "https://files.pythonhosted.org/packages/3b/c0/ac42f546d07e4f49f62332576cb845d45c67cf5610d1851254e341d563b6/ruff-0.14.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:c958f66ab884b7873e72df38dcabee03d556a8f2ee1b8538ee1c2bbd619883dd", size = 13682850, upload-time = "2025-10-07T18:21:31.842Z" },
- { url = "https://files.pythonhosted.org/packages/5f/c4/4b0c9bcadd45b4c29fe1af9c5d1dc0ca87b4021665dfbe1c4688d407aa20/ruff-0.14.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7eb0499a2e01f6e0c285afc5bac43ab380cbfc17cd43a2e1dd10ec97d6f2c42d", size = 12449825, upload-time = "2025-10-07T18:21:35.074Z" },
- { url = "https://files.pythonhosted.org/packages/4b/a8/e2e76288e6c16540fa820d148d83e55f15e994d852485f221b9524514730/ruff-0.14.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:4c63b2d99fafa05efca0ab198fd48fa6030d57e4423df3f18e03aa62518c565f", size = 12272599, upload-time = "2025-10-07T18:21:38.08Z" },
- { url = "https://files.pythonhosted.org/packages/18/14/e2815d8eff847391af632b22422b8207704222ff575dec8d044f9ab779b2/ruff-0.14.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:668fce701b7a222f3f5327f86909db2bbe99c30877c8001ff934c5413812ac02", size = 13193828, upload-time = "2025-10-07T18:21:41.216Z" },
- { url = "https://files.pythonhosted.org/packages/44/c6/61ccc2987cf0aecc588ff8f3212dea64840770e60d78f5606cd7dc34de32/ruff-0.14.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a86bf575e05cb68dcb34e4c7dfe1064d44d3f0c04bbc0491949092192b515296", size = 13628617, upload-time = "2025-10-07T18:21:44.04Z" },
+ { url = "https://files.pythonhosted.org/packages/68/31/c07e9c535248d10836a94e4f4e8c5a31a1beed6f169b31405b227872d4f4/ruff-0.14.5-py3-none-linux_armv6l.whl", hash = "sha256:f3b8248123b586de44a8018bcc9fefe31d23dda57a34e6f0e1e53bd51fd63594", size = 13171630, upload-time = "2025-11-13T19:57:54.894Z" },
+ { url = "https://files.pythonhosted.org/packages/8e/5c/283c62516dca697cd604c2796d1487396b7a436b2f0ecc3fd412aca470e0/ruff-0.14.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:f7a75236570318c7a30edd7f5491945f0169de738d945ca8784500b517163a72", size = 13413925, upload-time = "2025-11-13T19:57:59.181Z" },
+ { url = "https://files.pythonhosted.org/packages/b6/f3/aa319f4afc22cb6fcba2b9cdfc0f03bbf747e59ab7a8c5e90173857a1361/ruff-0.14.5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6d146132d1ee115f8802356a2dc9a634dbf58184c51bff21f313e8cd1c74899a", size = 12574040, upload-time = "2025-11-13T19:58:02.056Z" },
+ { url = "https://files.pythonhosted.org/packages/f9/7f/cb5845fcc7c7e88ed57f58670189fc2ff517fe2134c3821e77e29fd3b0c8/ruff-0.14.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2380596653dcd20b057794d55681571a257a42327da8894b93bbd6111aa801f", size = 13009755, upload-time = "2025-11-13T19:58:05.172Z" },
+ { url = "https://files.pythonhosted.org/packages/21/d2/bcbedbb6bcb9253085981730687ddc0cc7b2e18e8dc13cf4453de905d7a0/ruff-0.14.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2d1fa985a42b1f075a098fa1ab9d472b712bdb17ad87a8ec86e45e7fa6273e68", size = 12937641, upload-time = "2025-11-13T19:58:08.345Z" },
+ { url = "https://files.pythonhosted.org/packages/a4/58/e25de28a572bdd60ffc6bb71fc7fd25a94ec6a076942e372437649cbb02a/ruff-0.14.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88f0770d42b7fa02bbefddde15d235ca3aa24e2f0137388cc15b2dcbb1f7c7a7", size = 13610854, upload-time = "2025-11-13T19:58:11.419Z" },
+ { url = "https://files.pythonhosted.org/packages/7d/24/43bb3fd23ecee9861970978ea1a7a63e12a204d319248a7e8af539984280/ruff-0.14.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3676cb02b9061fee7294661071c4709fa21419ea9176087cb77e64410926eb78", size = 15061088, upload-time = "2025-11-13T19:58:14.551Z" },
+ { url = "https://files.pythonhosted.org/packages/23/44/a022f288d61c2f8c8645b24c364b719aee293ffc7d633a2ca4d116b9c716/ruff-0.14.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b595bedf6bc9cab647c4a173a61acf4f1ac5f2b545203ba82f30fcb10b0318fb", size = 14734717, upload-time = "2025-11-13T19:58:17.518Z" },
+ { url = "https://files.pythonhosted.org/packages/58/81/5c6ba44de7e44c91f68073e0658109d8373b0590940efe5bd7753a2585a3/ruff-0.14.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f55382725ad0bdb2e8ee2babcbbfb16f124f5a59496a2f6a46f1d9d99d93e6e2", size = 14028812, upload-time = "2025-11-13T19:58:20.533Z" },
+ { url = "https://files.pythonhosted.org/packages/ad/ef/41a8b60f8462cb320f68615b00299ebb12660097c952c600c762078420f8/ruff-0.14.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7497d19dce23976bdaca24345ae131a1d38dcfe1b0850ad8e9e6e4fa321a6e19", size = 13825656, upload-time = "2025-11-13T19:58:23.345Z" },
+ { url = "https://files.pythonhosted.org/packages/7c/00/207e5de737fdb59b39eb1fac806904fe05681981b46d6a6db9468501062e/ruff-0.14.5-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:410e781f1122d6be4f446981dd479470af86537fb0b8857f27a6e872f65a38e4", size = 13959922, upload-time = "2025-11-13T19:58:26.537Z" },
+ { url = "https://files.pythonhosted.org/packages/bc/7e/fa1f5c2776db4be405040293618846a2dece5c70b050874c2d1f10f24776/ruff-0.14.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:c01be527ef4c91a6d55e53b337bfe2c0f82af024cc1a33c44792d6844e2331e1", size = 12932501, upload-time = "2025-11-13T19:58:29.822Z" },
+ { url = "https://files.pythonhosted.org/packages/67/d8/d86bf784d693a764b59479a6bbdc9515ae42c340a5dc5ab1dabef847bfaa/ruff-0.14.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f66e9bb762e68d66e48550b59c74314168ebb46199886c5c5aa0b0fbcc81b151", size = 12927319, upload-time = "2025-11-13T19:58:32.923Z" },
+ { url = "https://files.pythonhosted.org/packages/ac/de/ee0b304d450ae007ce0cb3e455fe24fbcaaedae4ebaad6c23831c6663651/ruff-0.14.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d93be8f1fa01022337f1f8f3bcaa7ffee2d0b03f00922c45c2207954f351f465", size = 13206209, upload-time = "2025-11-13T19:58:35.952Z" },
+ { url = "https://files.pythonhosted.org/packages/33/aa/193ca7e3a92d74f17d9d5771a765965d2cf42c86e6f0fd95b13969115723/ruff-0.14.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:c135d4b681f7401fe0e7312017e41aba9b3160861105726b76cfa14bc25aa367", size = 13953709, upload-time = "2025-11-13T19:58:39.002Z" },
]
[[package]]
@@ -3989,14 +3968,14 @@ wheels = [
[[package]]
name = "types-bleach"
-version = "6.2.0.20250809"
+version = "6.3.0.20251115"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "types-html5lib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/53/50/f85660f9893da1a2cea3e14675c9ab4a75f2a5c12a8ab79de959e5f3f2ad/types_bleach-6.2.0.20250809.tar.gz", hash = "sha256:188d7a1119f6c953140b513ed57ba4213755695815472c19d0c22ac09c79b90b", size = 11216, upload-time = "2025-08-09T03:16:46.876Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/5f/54/3e0d9e2e0d7a00cf9b1a2c35160038c8bf5cb7ad80003c5d7e4e5af1e9dd/types_bleach-6.3.0.20251115.tar.gz", hash = "sha256:96911b20f169a18524d03b61fa7e98a08c411292f7cdb5dc191057f55dad9ae3", size = 11452, upload-time = "2025-11-15T03:00:28.919Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/7d/41/51075b7c9fd62f8ea636e6ca619ca25e5617c066a1a19d12e2f7d9343edb/types_bleach-6.2.0.20250809-py3-none-any.whl", hash = "sha256:0b372a75117947d9ac8a31ae733fd0f8d92ec75c4772e7b37093ba3fa5b48fb9", size = 11968, upload-time = "2025-08-09T03:16:46.174Z" },
+ { url = "https://files.pythonhosted.org/packages/ee/fb/9f016a969603ef949a573158a58dd293948ed187c1f9f76c7cfe1bb96705/types_bleach-6.3.0.20251115-py3-none-any.whl", hash = "sha256:f81e7cf4ebac3f3d60b66b3fd5236c324e65037d1b28d22c94d5b457f0b98f42", size = 12015, upload-time = "2025-11-15T03:00:27.785Z" },
]
[[package]]
@@ -4049,11 +4028,11 @@ wheels = [
[[package]]
name = "types-markdown"
-version = "3.9.0.20250906"
+version = "3.10.0.20251106"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/fb/dd/8a91a5f4dce705eff6862e01e8fd9984cdc55e6d6c3cfcadc68410c43abf/types_markdown-3.9.0.20250906.tar.gz", hash = "sha256:f02dc1a2d130b093de4910c64b2d0a811ae7020f03624df41c667818d2fee050", size = 19439, upload-time = "2025-09-06T02:45:23.617Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/de/e4/060f0dadd9b551cae77d6407f2bc84b168f918d90650454aff219c1b3ed2/types_markdown-3.10.0.20251106.tar.gz", hash = "sha256:12836f7fcbd7221db8baeb0d3a2f820b95050d0824bfa9665c67b4d144a1afa1", size = 19486, upload-time = "2025-11-06T03:06:44.317Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/29/17/b0b9d315422eae106af1d30e51afe4b59c18b42311605fed9068ac6aa065/types_markdown-3.9.0.20250906-py3-none-any.whl", hash = "sha256:afac4297e4e75f00b4043f9b3a989dc5924230d065996a233b9bce894c438cc2", size = 25830, upload-time = "2025-09-06T02:45:22.211Z" },
+ { url = "https://files.pythonhosted.org/packages/92/58/f666ca9391f2a8bd33bb0b0797cde6ac3e764866708d5f8aec6fab215320/types_markdown-3.10.0.20251106-py3-none-any.whl", hash = "sha256:2c39512a573899b59efae07e247ba088a75b70e3415e81277692718f430afd7e", size = 25862, upload-time = "2025-11-06T03:06:43.082Z" },
]
[[package]]
|