@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/tag-list/tag-list.component.spec.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
index 91cf09264..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
@@ -73,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 },
]
@@ -86,7 +91,13 @@ 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', () => {
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 bf5ad1b50..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
@@ -69,9 +69,13 @@ export class TagListComponent extends ManagementListComponent {
}
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[] {
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 251fe1899..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.3',
+ 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 959eb0f61..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index fdf4487ef..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
بدون مالك
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index c103f2949..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index 77f09d130..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
Без собственик
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index c66d62491..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index a634ca5da..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 527a22bfd..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index 5f6f40773..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 @@
@@ -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
@@ -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
- 90
+ 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
- 748
+ 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
@@ -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 4f870b0c4..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
Χωρίς ιδιοκτήτη
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 18437b419..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
@@ -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
@@ -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
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
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index 3c94db17e..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index e8ba1b4ba..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
بدون مالک
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 9ae5fd4fc..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 67882e212..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 5a1a5e67e..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
ללא בעלים
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 3660bf2d5..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index f5ba7ad40..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index 1c1b472a1..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 9b232f216..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 @@
@@ -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
@@ -4792,7 +4852,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Parent
+ Parent
Inbox tag
@@ -5216,7 +5276,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
183
- Advanced Filters
+ Filtri Avanzati
Add filter
@@ -5224,7 +5284,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
190
- Add filter
+ Aggiungi filtro
No advanced workflow filters defined.
@@ -5232,7 +5292,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
195
- No advanced workflow filters defined.
+ Nessun filtro avanzato del workflow definito.
Complete the custom field query configuration.
@@ -5240,7 +5300,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
224,226
- Complete the custom field query configuration.
+ Completa la configurazione della query di campo personalizzato.
Action type
@@ -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
- 90
+ 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
- 748
+ 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.
@@ -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:
@@ -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 d08e0b24b..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
所有者なし
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index 8e280e4c1..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
소유자 없음
@@ -9792,7 +9848,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Received
+ 받음
Processed
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 6bff23785..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index a0252b1bc..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index 00273213b..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
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 0b9d66516..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 7b202423e..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 2b71a796e..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 2ce0114d4..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,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
GG
@@ -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
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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
@@ -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
@@ -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
Błąd drukowania.
@@ -8014,7 +8074,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1463
+ 1472
Błąd ładowania dokumentu do wydruku.
@@ -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
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
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index e76420c67..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 @@
@@ -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
@@ -5216,7 +5276,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
183
- Advanced Filters
+ Filtros Avançados
Add filter
@@ -5224,7 +5284,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
190
- Add filter
+ Adicionar filtro
No advanced workflow filters defined.
@@ -5232,7 +5292,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
195
- No advanced workflow filters defined.
+ Nenhum filtro avançado de fluxo de trabalho definido.
Complete the custom field query configuration.
@@ -5240,7 +5300,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
224,226
- Complete the custom field query configuration.
+ Conclua a configuração da consulta de campo personalizado.
Action type
@@ -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
- 90
+ 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
- 748
+ 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.
@@ -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:
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 836d331f7..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index b3a2f5558..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index a5c432a9d..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
Без владельца
@@ -9807,7 +9863,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Processed mail(s) deleted
+ Обработанная почта удалена
Filter by:
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index cc1582234..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index de3b6838a..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 4ccfd9626..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 5060b58d9..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index f6ce0c918..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
ไม่มีเจ้าของ
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index f9e4d3011..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 @@
@@ -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
@@ -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
@@ -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
@@ -5074,7 +5134,7 @@ tüm krite
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.
+ Pozitif değerler tarihten sonra, negatif değerler tarihten önce tetiklenecektir.
Relative to
@@ -5082,7 +5142,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
139
- Relative to
+ Şunun akrabası
Custom field
@@ -5106,7 +5166,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
149
- Recurring
+ Tekrarlanan
Trigger is recurring.
@@ -5114,7 +5174,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
149
- Trigger is recurring.
+ Tetikleyici tekrar ediyor.
Recurring interval days
@@ -5122,7 +5182,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
153
- Recurring interval days
+ Tekrarlayan aralık günleri
Repeat the trigger every n days.
@@ -5130,7 +5190,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
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.
@@ -5138,7 +5198,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
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
@@ -5162,7 +5222,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
163
- Filter sources
+ Kaynakları filtrele
Filter path
@@ -5178,7 +5238,7 @@ tüm krite
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>
+ 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
@@ -5194,7 +5254,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
165
- Apply to documents consumed via this mail rule.
+ Bu posta kuralı aracılığıyla kullanılan belgelere uygulayın.
Content matching algorithm
@@ -5202,7 +5262,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
168
- Content matching algorithm
+ İçerik eşleştirme algoritması
Content matching pattern
@@ -5210,7 +5270,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
170
- Content matching pattern
+ İçerik eşleştirme modeli
Advanced Filters
@@ -5218,7 +5278,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
183
- Advanced Filters
+ Gelişmiş Filtreler
Add filter
@@ -5226,7 +5286,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
190
- Add filter
+ Filtre ekle
No advanced workflow filters defined.
@@ -5234,7 +5294,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
195
- No advanced workflow filters defined.
+ Gelişmiş bir iş akışı filtresi tanımlanmamıştır.
Complete the custom field query configuration.
@@ -5242,7 +5302,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
224,226
- Complete the custom field query configuration.
+ Özel alan sorgu yapılandırmasını tamamlayın.
Action type
@@ -5250,7 +5310,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
258
- Action type
+ Eylem türü
Assign title
@@ -5266,7 +5326,7 @@ tüm krite
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>.
+ Bazı yer tutucular içerebilir, bkz. <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokümantasyon</a>.
Assign tags
@@ -5282,7 +5342,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
267
- Assign storage path
+ Depolama dizini atayın
Assign custom fields
@@ -5290,7 +5350,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
268
- Assign custom fields
+ Özel alanları atayın
Assign owner
@@ -5298,7 +5358,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
272
- Sahip Ata
+ Sahip ata
Assign view permissions
@@ -5322,7 +5382,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
320
- Remove tags
+ Etiketleri kaldır
Remove all
@@ -5354,7 +5414,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
358
- Remove all
+ Tümünü kaldır
Remove correspondents
@@ -5370,7 +5430,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
332
- Remove document types
+ Tüm belge tiplerini kaldır
Remove storage paths
@@ -5378,7 +5438,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
338
- Remove storage paths
+ Tüm depolama dizinlerini kaldır
Remove custom fields
@@ -5386,7 +5446,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
344
- Remove custom fields
+ Özel alanları kaldır
Remove owners
@@ -5394,7 +5454,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
351
- Remove owners
+ Tüm sahipleri kaldır
Remove permissions
@@ -5402,7 +5462,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
357
- Remove permissions
+ İzinleri kaldır
View permissions
@@ -5410,7 +5470,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
360
- View permissions
+ İzinleri görüntüle
Edit permissions
@@ -5418,7 +5478,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
379
- Edit permissions
+ İzinleri düzenle
Email subject
@@ -5466,7 +5526,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
420
- Use parameters for webhook body
+ Webhook gövdesi için parametreleri kullanın
Send webhook payload as JSON
@@ -5474,7 +5534,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
421
- Send webhook payload as JSON
+ Webhook yükünü JSON olarak gönder
Webhook params
@@ -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
- 90
+ 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
- 748
+ 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
@@ -9770,7 +9825,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
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,7 +10005,7 @@ 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
@@ -9958,7 +10013,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
342
- Permissions updated successfully
+ İzinler başarıyla güncellendi
This operation will permanently delete all objects.
@@ -9966,7 +10021,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
363
- This operation will permanently delete all objects.
+ Bu işlem tüm nesneleri kalıcı olarak silecektir.
Objects deleted successfully
@@ -9974,7 +10029,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
377
- Objects deleted successfully
+ Nesneler başarıyla silindi
Error deleting objects
@@ -9982,7 +10037,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
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 7c538361e..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 @@
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
Без власника
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index a0bc894e3..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 @@
@@ -3138,7 +3170,7 @@
GitHub
src/app/components/app-frame/app-frame.component.html
- 307
+ 309
GitHub
@@ -3146,7 +3178,7 @@
is available.
src/app/components/app-frame/app-frame.component.html
- 316,317
+ 318,319
可用
@@ -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
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
没有所有者
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 89cc5bb01..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 @@
@@ -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
@@ -5628,7 +5688,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- 標籤包含
+ 標籤符合
Does not have these tags
@@ -5858,7 +5918,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 90
+ 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
- 748
+ 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
自訂欄位
@@ -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
@@ -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
封存序號 (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
沒有擁有者
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 3a8d4d327..54f3c1fa0 100644
--- a/src/documents/filters.py
+++ b/src/documents/filters.py
@@ -160,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:
@@ -214,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,
@@ -244,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 6af48ca9b..21bf03c7a 100644
--- a/src/documents/mail.py
+++ b/src/documents/mail.py
@@ -1,25 +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
-from documents.data_models import ConsumableDocument
-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 | ConsumableDocument],
- *,
- use_archive: bool,
+ attachments: list[EmailAttachment],
) -> int:
"""
Send an email with attachments.
@@ -28,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
@@ -46,47 +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:
- if isinstance(document, ConsumableDocument):
- attachment_path = document.original_file
- friendly_filename = document.original_file.name
- else:
- attachment_path = (
- document.archive_path
- if use_archive and document.has_archive_version
- else document.source_path
- )
- friendly_filename = _get_unique_filename(
- document,
- used_filenames,
- archive=use_archive and document.has_archive_version,
- )
- used_filenames.add(friendly_filename)
+ for attachment in attachments:
+ filename = _get_unique_filename(
+ attachment.friendly_name,
+ used_filenames,
+ )
+ 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/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/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_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_workflows.py b/src/documents/tests/test_workflows.py
index c25565ae6..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
@@ -2989,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,
)
@@ -3144,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):
@@ -3195,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 9365a82c2..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
@@ -180,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
@@ -1213,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(
@@ -1362,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(
@@ -1393,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)
@@ -1839,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")
@@ -2312,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)
@@ -2411,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 2140ae0af..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Waarde moet geldige JSON wees."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ongeldige logiese uitdrukking {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 705ec2f38..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "يجب أن تكون القيمة JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
-msgstr ""
+msgstr "قائمة عبارة خاطئة."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} حقل مخصص غير صالح."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 654debc96..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 b7de8e656..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Стойността трябва да е валидна JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Невалидна заявка на персонализираното полето"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Списък с невалиден израз. Не може да е празно."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Невалиден логически оператор {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Надвишен е максимален брой за заявки."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не е валидно персонализирано поле."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддържа заявка expr {expr!r}."
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Надвишена е максималната дълбочина на вмъкване."
-#: documents/filters.py:851
+#: 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 3e4c364c5..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Valor ha de ser un JSON valid."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressió de camp de consulta invàlid"
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Invàlid operand lògic {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Condicions de consulta excedits."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: 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 05a383673..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Hodnota musí být platný JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz dotazu na vlastní pole"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný seznam výrazů. Nesmí být prázdný."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} není platné vlastní pole."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Vlastní pole nebylo nalezeno"
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index 06a964d01..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Værdien skal være gyldig JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ugyldigt tilpasset feltforespørgselsudtryk"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ugyldig udtryksliste. Må ikke være tom."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ugyldig logisk operatør {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maksimalt antal forespørgselsbetingelser overskredet."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maksimal indlejringsdybde overskredet."
-#: documents/filters.py:851
+#: 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 f452426e4..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ungültiger logischer Operator {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximale Anzahl an Abfragebedingungen überschritten."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximale Verschachtelungstiefe überschritten."
-#: documents/filters.py:851
+#: 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"
@@ -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"
@@ -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 5d4bbef1d..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Μη έγκυρος λογικός τελεστής {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s."
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης."
-#: documents/filters.py:851
+#: 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 1916bb08b..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-28 18:06+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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 f90e38ca5..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "El valor debe ser JSON válido."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expresión de consulta de campo personalizado no válida"
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: 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:558
+#: 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:666 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:851
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Campo personalizado no encontrado"
diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po
index 2fb8be57a..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Väärtus peab olema lubatav JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Vigane kohandatud välja päringu avaldis"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Vigane avaldiste loend. Peab olema mittetühi."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Vigane loogikaoperaator {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Päringutingimuste suurim hulk on ületatud."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: 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 b77e6681f..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "مقدار باید JSON معتبر باشد."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Invalid custom field query expression"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{نام! R} یک زمینه سفارشی معتبر نیست."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 5a2963ce5..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Arvon on oltava kelvollista JSON:ia."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 4ed662fe8..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-29 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: French\n"
"Language: fr_FR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/filters.py:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "La valeur doit être un JSON valide."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Requête de champ personnalisé invalide"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Liste d’expressions invalide. Doit être non vide."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Opérateur logique {op!r} invalide"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Nombre maximum de conditions de requête dépassé."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Champ personnalisé non trouvé"
diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po
index 7e3345d48..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "ערך מוכרך להיות JSON תקין."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "סימן פעולה לוגית לא חוקי {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "חריגה ממספר תנאי השאילתה המרבי."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} הוא לא שדה מותאם אישית חוקי."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}."
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "חריגה מעומק הקינון המרבי."
-#: documents/filters.py:851
+#: 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 00d8a91eb..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 133e28e2c..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: 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:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Érvénytelen egyéni mező lekérdezési kifejezés"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Érvénytelen kifejezéslista. Nem lehet üres."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Érvénytelen logikai operátor {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximum lekérdezési feltételszám átlépve."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: 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 17b069cfc..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Nilai harus berupa JSON yang valid."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ekspresi pencarian bidang khusus tidak valid"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operator logika {op!r} tidak valid"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Jumlah maksimal kondisi pencarian terlampaui."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} bukan bidang khusus yang valid."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 f968b48c3..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Il valore deve essere un JSON valido."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Campo personalizzato della query non valido"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Elenco delle espressioni non valido. Deve essere non vuoto."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operatore logico non valido {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Numero massimo delle condizioni della jQuery superato."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} non è un campo personalizzato valido."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 a0344e845..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "値は有効なJSONである必要があります。"
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "無効なカスタムフィールドクエリ式"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "無効な式リストです。空であってはなりません。"
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "無効な論理演算子 {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "クエリ条件の最大数を超えました。"
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} は有効なカスタムフィールドではありません。"
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。"
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "最大ネストの深さを超えました。"
-#: documents/filters.py:851
+#: 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 d04db9471..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "값은 유효한 JSON이어야 합니다."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "잘못된 사용자 정의 필드 쿼리 표현식"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "잘못된 논리 연산자 {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "쿼리 조건의 최대 개수를 초과했습니다."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다."
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "최대 중첩 깊이를 초과했습니다."
-#: documents/filters.py:851
+#: 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 69b0afa14..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 9f8f64f0f..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neteisingas loginis operatorius {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Viršytas maksimalus užklausos sąlygų skaičius."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nėra galiojantis pasirinktas laukas."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 9ad33320a..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 397556578..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 dd190fd70..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Waarde moet een geldige JSON zijn."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} is geen geldig aangepast veld."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 b919971b1..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Verdien må være en gyldig JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 a8558f15c..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-29 12:14\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Wartość musi być prawidłowym JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego"
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Nieprawidłowy operator logiczny {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maksymalna liczba warunków zapytania została przekroczona."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "Nie znaleziono pola niestandardowego"
@@ -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 90d431380..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "O valor deve ser um JSON válido."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválida"
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: 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:558
+#: 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:666 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:851
+#: 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 1b2a96905..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "O valor deve ser JSON válido."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválido"
-#: documents/filters.py:421
+#: 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:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: 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:558
+#: 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:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 9d95d6e19..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 dc90bc519..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Значение должно быть корректным JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Неверное выражение запроса пользовательского поля"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Недопустимый список выражений. Не может быть пустым."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Недопустимый логический оператор {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Превышено максимальное количество условий запроса."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не является допустимым пользовательским полем."
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддерживает запрос {expr!r}."
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Превышена максимальная глубина вложения."
-#: documents/filters.py:851
+#: 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 3a711b572..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Hodnota musí byť vo validnom formáte JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz požiadavky na vlastné pole"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie je platné vlastné pole."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 497771b8a..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Vrednost mora biti veljaven JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Neveljaven izraz poizvedbe po polju po meri"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Neveljaven seznam izrazov. Ne sme biti prazen."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Neveljaven logični operator {op!r}"
-#: documents/filters.py:456
+#: 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:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ni veljavno polje po meri."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 7ada34e65..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Vrednost mora da bude važeći JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Nevažeći izraz upita prilagođen polja"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Nevažeća lista izraza. Ne sme biti prazna."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Nevažeći logični operator {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Premašen je maksimalni broj uslova u upitu."
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nije validno prilagođeno polje."
-#: documents/filters.py:558
+#: 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:666 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:851
+#: 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 d5dc8a029..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Värdet måste vara giltigt JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Ogiltigt sökordsuttryck för anpassade fält"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Ogiltig uttryckslista. Får inte vara tom."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Ogiltig logisk operator {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "Maximalt antal frågevillkor överskrids."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: 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 921a97ab7..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง"
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง"
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด"
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง"
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}"
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด"
-#: documents/filters.py:851
+#: 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 45d232824..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Değer geçerli bir JSON olmalıdır."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "Geçersiz özel alan sorgu ifadesi"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "Geçersiz ifade listesi. Boş olmamalıdır."
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "Geçersiz mantıksal işleç {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "En çok sorgu koşulu sayısı aşıldı."
-#: documents/filters.py:521
+#: 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:558
+#: 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:666 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:851
+#: 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 1f3098872..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Значення має бути коректним JSON."
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:851
+#: 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 23f3a8cf5..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:08\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "Giá trị phải là JSON hợp lệ."
-#: documents/filters.py:411
+#: 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:421
+#: 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:442
+#: 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:456
+#: 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:521
+#: 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:558
+#: 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:666 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:851
+#: 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 d44c031ef..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "值必须是有效的 JSON 格式。"
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "无效的自定义字段查询表达式"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "无效的表达式列表。必须不为空。"
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "无效的逻辑运算符 {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "超出查询条件的最大数量。"
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是一个有效的自定义字段。"
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支持查询表达式 {expr!r}。"
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超出最大嵌套深度。"
-#: documents/filters.py:851
+#: 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 82b5e9f00..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-28 18:06+0000\n"
-"PO-Revision-Date: 2025-10-28 18:07\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:392
+#: documents/filters.py:395
msgid "Value must be valid JSON."
msgstr "參數值必須是有效的 JSON。"
-#: documents/filters.py:411
+#: documents/filters.py:414
msgid "Invalid custom field query expression"
msgstr "無效的自訂欄位查詢表達式"
-#: documents/filters.py:421
+#: documents/filters.py:424
msgid "Invalid expression list. Must be nonempty."
msgstr "無效的表達式列表,不能為空。"
-#: documents/filters.py:442
+#: documents/filters.py:445
msgid "Invalid logical operator {op!r}"
msgstr "無效的邏輯運算符 {op!r}"
-#: documents/filters.py:456
+#: documents/filters.py:459
msgid "Maximum number of query conditions exceeded."
msgstr "超過查詢條件的最大數量。"
-#: documents/filters.py:521
+#: documents/filters.py:524
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是有效的自訂欄位。"
-#: documents/filters.py:558
+#: documents/filters.py:561
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支援查詢表達式 {expr!r}。"
-#: documents/filters.py:666 documents/models.py:135
+#: documents/filters.py:669 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超過最大巢狀深度。"
-#: documents/filters.py:851
+#: documents/filters.py:854
msgid "Custom field not found"
msgstr "找不到自訂欄位"
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 e522208a2..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, 3)
+__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 69375e1bc..e79c0e668 100644
--- a/src/paperless/views.py
+++ b/src/paperless/views.py
@@ -197,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 84ff2e5a1..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]]
@@ -689,13 +689,13 @@ wheels = [
[[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.3"
+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 = ["mfa", "socialaccount"], 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]]
|