@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 16b65c84d..9e83797a6 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,22 +173,6 @@ 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 = [
@@ -416,9 +400,6 @@ export class FilterEditorComponent
@Input()
set filterRules(value: FilterRule[]) {
- if (value === this._filterRules) {
- return
- }
this._filterRules = value
this.documentTypeSelectionModel.clear(false)
@@ -766,7 +747,7 @@ export class FilterEditorComponent
) {
filterRules.push({
rule_type: FILTER_TITLE_CONTENT,
- value: this._textFilter.trim(),
+ value: this._textFilter,
})
}
if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_TITLE) {
@@ -824,7 +805,7 @@ export class FilterEditorComponent
) {
filterRules.push({
rule_type: FILTER_FULLTEXT_QUERY,
- value: this._textFilter.trim(),
+ value: this._textFilter,
})
}
if (
@@ -1117,13 +1098,7 @@ export class FilterEditorComponent
rulesModified: boolean = false
updateRules() {
- const updatedRules = this.filterRules
- this._filterRules = updatedRules
- this.rulesModified = filterRulesDiffer(
- this._unmodifiedFilterRules,
- updatedRules
- )
- this.filterRulesChange.next(updatedRules)
+ this.filterRulesChange.next(this.filterRules)
}
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 26b63fd56..604e3fd68 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 c87a5c3f6..6aadd8330 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,7 +1,5 @@
::ng-deep .popover {
max-width: 350px;
- max-height: 600px;
- overflow: hidden;
pre {
white-space: pre-wrap;
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
index 9c64f5730..95927849a 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts
@@ -361,11 +361,4 @@ describe('ManagementListComponent', () => {
const original = component.getOriginalObject({ id: 4 } as Tag)
expect(original).toEqual(childTag)
})
-
- it('getSelectableIDs should return flat ids when not overridden', () => {
- const ids = (
- ManagementListComponent.prototype as any
- ).getSelectableIDs.call({}, [{ id: 1 }, { id: 5 }] as any)
- expect(ids).toEqual([1, 5])
- })
})
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts
index 7cc3eaf4b..6b235123a 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts
@@ -146,7 +146,7 @@ export abstract class ManagementListComponent
}
public getOriginalObject(object: T): T {
- return this.unfilteredData.find((d) => d?.id == object?.id) || object
+ return this.unfilteredData.find((d) => d.id == object.id)
}
reloadData(extraParams: { [key: string]: any } = null) {
@@ -297,19 +297,13 @@ export abstract class ManagementListComponent
}
toggleAll(event: PointerEvent) {
- const checked = (event.target as HTMLInputElement).checked
- this.togggleAll = checked
- if (checked) {
- this.selectedObjects = new Set(this.getSelectableIDs(this.data))
+ if ((event.target as HTMLInputElement).checked) {
+ this.selectedObjects = new Set(this.data.map((o) => o.id))
} else {
this.clearSelection()
}
}
- protected getSelectableIDs(objects: T[]): number[] {
- return objects.map((o) => o.id)
- }
-
clearSelection() {
this.togggleAll = false
this.selectedObjects.clear()
diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
index 0db84182b..b4694e145 100644
--- a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
+++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts
@@ -17,7 +17,6 @@ describe('TagListComponent', () => {
let component: TagListComponent
let fixture: ComponentFixture
let tagService: TagService
- let listFilteredSpy: jest.SpyInstance
beforeEach(async () => {
TestBed.configureTestingModule({
@@ -40,7 +39,7 @@ describe('TagListComponent', () => {
}).compileComponents()
tagService = TestBed.inject(TagService)
- listFilteredSpy = jest.spyOn(tagService, 'listFiltered').mockReturnValue(
+ jest.spyOn(tagService, 'listFiltered').mockReturnValue(
of({
count: 3,
all: [1, 2, 3],
@@ -73,14 +72,9 @@ describe('TagListComponent', () => {
)
})
- it('should omit matching children from top level when their parent is present', () => {
+ it('should filter out child tags if name filter is empty, otherwise show all', () => {
const tags = [
- {
- id: 1,
- name: 'Tag1',
- parent: null,
- children: [{ id: 2, name: 'Tag2', parent: 1 }],
- },
+ { id: 1, name: 'Tag1', parent: null },
{ id: 2, name: 'Tag2', parent: 1 },
{ id: 3, name: 'Tag3', parent: null },
]
@@ -91,65 +85,6 @@ describe('TagListComponent', () => {
component['_nameFilter'] = 'Tag2' // Simulate non-empty name filter
const filteredWithName = component.filterData(tags as any)
- expect(filteredWithName.length).toBe(2)
- expect(filteredWithName.find((t) => t.id === 2)).toBeUndefined()
- expect(
- filteredWithName
- .find((t) => t.id === 1)
- ?.children?.some((c) => c.id === 2)
- ).toBe(true)
- })
-
- it('should request only parent tags when no name filter is applied', () => {
- expect(tagService.listFiltered).toHaveBeenCalledWith(
- 1,
- null,
- undefined,
- undefined,
- undefined,
- true,
- { is_root: true }
- )
- })
-
- it('should include child tags when a name filter is applied', () => {
- listFilteredSpy.mockClear()
- component['_nameFilter'] = 'Tag'
- component.reloadData()
- expect(tagService.listFiltered).toHaveBeenCalledWith(
- 1,
- null,
- undefined,
- undefined,
- 'Tag',
- true,
- null
- )
- })
-
- it('should include child tags when selecting all', () => {
- const parent = {
- id: 10,
- name: 'Parent',
- children: [
- {
- id: 11,
- name: 'Child',
- },
- ],
- }
-
- component.data = [parent as any]
- const selectEvent = { target: { checked: true } } as unknown as PointerEvent
- component.toggleAll(selectEvent)
-
- expect(component.selectedObjects.has(10)).toBe(true)
- expect(component.selectedObjects.has(11)).toBe(true)
-
- const deselectEvent = {
- target: { checked: false },
- } as unknown as PointerEvent
- component.toggleAll(deselectEvent)
- expect(component.selectedObjects.size).toBe(0)
+ expect(filteredWithName.length).toBe(3)
})
})
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 64ca121df..77d42e020 100644
--- a/src-ui/src/app/components/manage/tag-list/tag-list.component.ts
+++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.ts
@@ -61,33 +61,9 @@ export class TagListComponent extends ManagementListComponent {
return $localize`Do you really want to delete the tag "${object.name}"?`
}
- override reloadData(extraParams: { [key: string]: any } = null) {
- const params = this.nameFilter?.length
- ? extraParams
- : { ...extraParams, is_root: true }
- super.reloadData(params)
- }
-
filterData(data: Tag[]) {
- if (!this.nameFilter?.length) {
- return data.filter((tag) => !tag.parent)
- }
-
- // When filtering by name, exclude children if their parent is also present
- const availableIds = new Set(data.map((tag) => tag.id))
- return data.filter((tag) => !tag.parent || !availableIds.has(tag.parent))
- }
-
- protected override getSelectableIDs(tags: Tag[]): number[] {
- const ids: number[] = []
- for (const tag of tags.filter(Boolean)) {
- if (tag.id != null) {
- ids.push(tag.id)
- }
- if (Array.isArray(tag.children) && tag.children.length) {
- ids.push(...this.getSelectableIDs(tag.children))
- }
- }
- return ids
+ return this.nameFilter?.length
+ ? [...data]
+ : data.filter((tag) => !tag.parent)
}
}
diff --git a/src-ui/src/app/services/rest/abstract-paperless-service.ts b/src-ui/src/app/services/rest/abstract-paperless-service.ts
index 60f91eb5f..34e2c8aea 100644
--- a/src-ui/src/app/services/rest/abstract-paperless-service.ts
+++ b/src-ui/src/app/services/rest/abstract-paperless-service.ts
@@ -1,7 +1,7 @@
import { HttpClient, HttpParams } from '@angular/common/http'
import { inject, Injectable } from '@angular/core'
import { Observable } from 'rxjs'
-import { map, publishReplay, refCount, tap } from 'rxjs/operators'
+import { map, publishReplay, refCount } from 'rxjs/operators'
import { ObjectWithId } from 'src/app/data/object-with-id'
import { Results } from 'src/app/data/results'
import { environment } from 'src/environments/environment'
@@ -13,11 +13,6 @@ export abstract class AbstractPaperlessService {
protected http: HttpClient
protected resourceName: string
- protected _loading: boolean = false
- public get loading(): boolean {
- return this._loading
- }
-
constructor() {
this.http = inject(HttpClient)
}
@@ -48,7 +43,6 @@ export abstract class AbstractPaperlessService {
sortReverse?: boolean,
extraParams?
): Observable> {
- this._loading = true
let httpParams = new HttpParams()
if (page) {
httpParams = httpParams.set('page', page.toString())
@@ -65,15 +59,9 @@ export abstract class AbstractPaperlessService {
httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey])
}
}
- return this.http
- .get>(this.getResourceUrl(), {
- params: httpParams,
- })
- .pipe(
- tap(() => {
- this._loading = false
- })
- )
+ return this.http.get>(this.getResourceUrl(), {
+ params: httpParams,
+ })
}
private _listAll: Observable>
@@ -108,7 +96,6 @@ export abstract class AbstractPaperlessService {
}
getFew(ids: number[], extraParams?): Observable> {
- this._loading = true
let httpParams = new HttpParams()
httpParams = httpParams.set('id__in', ids.join(','))
httpParams = httpParams.set('ordering', '-id')
@@ -118,15 +105,9 @@ export abstract class AbstractPaperlessService {
httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey])
}
}
- return this.http
- .get>(this.getResourceUrl(), {
- params: httpParams,
- })
- .pipe(
- tap(() => {
- this._loading = false
- })
- )
+ return this.http.get>(this.getResourceUrl(), {
+ params: httpParams,
+ })
}
clearCache() {
@@ -134,12 +115,7 @@ export abstract class AbstractPaperlessService {
}
get(id: number): Observable {
- this._loading = true
- return this.http.get(this.getResourceUrl(id)).pipe(
- tap(() => {
- this._loading = false
- })
- )
+ return this.http.get(this.getResourceUrl(id))
}
create(o: T): Observable {
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 7eda9c4a3..e3138b895 100644
--- a/src-ui/src/app/services/rest/log.service.spec.ts
+++ b/src-ui/src/app/services/rest/log.service.spec.ts
@@ -49,14 +49,4 @@ 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 d07f7cd69..a836fa555 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, HttpParams } from '@angular/common/http'
+import { HttpClient } from '@angular/common/http'
import { Injectable, inject } from '@angular/core'
import { Observable } from 'rxjs'
import { environment } from 'src/environments/environment'
@@ -13,13 +13,7 @@ export class LogService {
return this.http.get(`${environment.apiBaseUrl}logs/`)
}
- 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,
- })
+ get(id: string): Observable {
+ return this.http.get(`${environment.apiBaseUrl}logs/${id}/`)
}
}
diff --git a/src-ui/src/app/services/rest/mail-account.service.ts b/src-ui/src/app/services/rest/mail-account.service.ts
index 54f6051e2..d4511e2d6 100644
--- a/src-ui/src/app/services/rest/mail-account.service.ts
+++ b/src-ui/src/app/services/rest/mail-account.service.ts
@@ -7,16 +7,18 @@ import { AbstractPaperlessService } from './abstract-paperless-service'
providedIn: 'root',
})
export class MailAccountService extends AbstractPaperlessService {
+ loading: boolean
+
constructor() {
super()
this.resourceName = 'mail_accounts'
}
private reload() {
- this._loading = true
+ this.loading = true
this.listAll().subscribe((r) => {
this.mailAccounts = r.results
- this._loading = false
+ this.loading = false
})
}
diff --git a/src-ui/src/app/services/rest/mail-rule.service.ts b/src-ui/src/app/services/rest/mail-rule.service.ts
index e9923e570..bb92107a9 100644
--- a/src-ui/src/app/services/rest/mail-rule.service.ts
+++ b/src-ui/src/app/services/rest/mail-rule.service.ts
@@ -7,16 +7,18 @@ import { AbstractPaperlessService } from './abstract-paperless-service'
providedIn: 'root',
})
export class MailRuleService extends AbstractPaperlessService {
+ loading: boolean
+
constructor() {
super()
this.resourceName = 'mail_rules'
}
private reload() {
- this._loading = true
+ this.loading = true
this.listAll().subscribe((r) => {
this.mailRules = r.results
- this._loading = false
+ this.loading = false
})
}
diff --git a/src-ui/src/app/services/rest/saved-view.service.ts b/src-ui/src/app/services/rest/saved-view.service.ts
index 7bdb890a0..4ea2cef65 100644
--- a/src-ui/src/app/services/rest/saved-view.service.ts
+++ b/src-ui/src/app/services/rest/saved-view.service.ts
@@ -17,6 +17,7 @@ export class SavedViewService extends AbstractPaperlessService {
private settingsService = inject(SettingsService)
private documentService = inject(DocumentService)
+ public loading: boolean = true
private savedViews: SavedView[] = []
private savedViewDocumentCounts: Map = new Map()
private unsubscribeNotifier: Subject = new Subject()
@@ -37,12 +38,12 @@ export class SavedViewService extends AbstractPaperlessService {
tap({
next: (r) => {
this.savedViews = r.results
- this._loading = false
+ this.loading = false
this.settingsService.dashboardIsEmpty =
this.dashboardViews.length === 0
},
error: () => {
- this._loading = false
+ this.loading = false
this.settingsService.dashboardIsEmpty = true
},
})
diff --git a/src-ui/src/app/services/rest/workflow.service.ts b/src-ui/src/app/services/rest/workflow.service.ts
index 5c037a8e3..ecf564f06 100644
--- a/src-ui/src/app/services/rest/workflow.service.ts
+++ b/src-ui/src/app/services/rest/workflow.service.ts
@@ -7,16 +7,18 @@ import { AbstractPaperlessService } from './abstract-paperless-service'
providedIn: 'root',
})
export class WorkflowService extends AbstractPaperlessService {
+ loading: boolean
+
constructor() {
super()
this.resourceName = 'workflows'
}
public reload() {
- this._loading = true
+ this.loading = true
this.listAll().subscribe((r) => {
this.workflows = r.results
- this._loading = false
+ this.loading = false
})
}
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 e01af7fd4..411dcd6f9 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,3 +1,4 @@
+import { fakeAsync, tick } from '@angular/core/testing'
import {
CustomFieldQueryElementType,
CustomFieldQueryLogicalOperator,
@@ -110,38 +111,13 @@ describe('CustomFieldQueryAtom', () => {
expect(atom.serialize()).toEqual([1, 'operator', 'value'])
})
- it('should emit changed on value change immediately', () => {
+ it('should emit changed on value change after debounce', fakeAsync(() => {
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 34891641a..3438f2c85 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, distinctUntilChanged } from 'rxjs'
+import { Subject, debounceTime, distinctUntilChanged } from 'rxjs'
import { v4 as uuidv4 } from 'uuid'
import {
CUSTOM_FIELD_QUERY_VALUE_TYPES_BY_OPERATOR,
@@ -110,22 +110,7 @@ export class CustomFieldQueryAtom extends CustomFieldQueryElement {
protected override connectValueModelChanged(): void {
this.valueModelChanged
- .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
- })
- )
+ .pipe(debounceTime(1000), distinctUntilChanged())
.subscribe(() => {
this.changed.next(this)
})
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index fa3ce233b..3885ab81a 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.20.1',
+ version: '2.19.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 7219c5dd8..ad14fbbdf 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Sluit
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Vorige
@@ -30,7 +30,7 @@
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
+ node_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
198
Volgende
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Kies maand
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klik om te bekyk.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx kan outomaties na bywerkings soek
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Hoe werk dit?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Bywerking beskikbaar
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Fout by die bewaar van instellings vir soek na bywerkings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Hoofletterongevoelig
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Ken dokumenttipe toe
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Ken korrespondent toe
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-pos
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Skep nuwe gebruikersrekening
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Wysig gebruikersrekening
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nie toegewys nie
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Sluit in:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Kies alles
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel & inhoud
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Meer soos
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
gelyk aan
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is leeg
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is nie leeg nie
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
groter as
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
kleiner as
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sonder korrespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sonder dokumenttipe
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sonder enige etiket
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Eienaar:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Eienaar nie in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Sonder ’n eienaar
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 105083c0b..3c1206ec3 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
إغلاق
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
السابق
@@ -30,7 +30,7 @@
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
+ node_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
198
التالي
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
تحديد الشهر
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
انقر للعرض.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx يتحقق تلقائياً من وجود تحديثات
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
كيف يعمل هذا؟
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
يتوفر تحديث
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
تم تحديث طرق عرض الشريط الجانبي
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
خطأ في تحديث طرق عرض الشريط الجانبي
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
أضيف
-
- 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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
حالة غير حساسة
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
تعيين نوع المستند
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
تعيين جهة تراسل
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
البريد الإلكتروني
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
إنشاء حساب مستخدم جديد
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
تعديل حساب المستخدم
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
نوع المشغل
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
مشغل للمستندات التي تطابق جميع عوامل التصفية المحددة أدناه.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
تصفية اسم المِلَفّ
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
تطبق فقط على المستندات التي تطابق اسم هذا المِلَفّ. المحارف البديلة على سبيل المثال *.pdf أو *invoice* مسموح بها. غير حساسة لحالة الأحرف.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
تصفية المصادر
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
تصفية المسار
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
تنطبق على المستندات التي تطابق هذا المسار. يسمح باستخدام أحرف البدل المحددة كـ *. تطبيع الحالة.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
تصفية قاعدة البريد
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
تطبيق على المستندات المستهلكة عبر هذه القاعدة البريدية.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
خوارزمية مطابقة المحتوى
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
نمط مطابقة المحتوى
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
نوع الإجراء
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
تعيين العنوان
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
يمكن أن تتضمن بعض العناصر النائبة، راجع <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>التوثيق</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
تعيين وسوم
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
تعيين مسار التخزين
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
تعيين حقول مخصصة
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
تعيين مالك
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
تعيين صلاحيات العرض
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
تعيين صلاحيات التحرير
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
إزالة الوسوم
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
أزاله الكل
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
إزالة جهات التراسل
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
إزالة أنواع المستندات
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
إزالة مسارات التخزين
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
إزالة الحقول المخصصة
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
إزالة المُلًاك
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
إزالة الصلاحيات
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
عرض الصلاحيات
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
تحرير الصلاحيات
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
غير معين
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
فتح المرشح
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
تم تحديث الملف الشخصي بنجاح
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
خطأ أثناء حفظ الملف الشخصي
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
خطأ أثناء إنشاء رمز المصادقة
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
خطأ أثناء قطع الاتصال بحساب الشبكة الاجتماعية
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
حقول مخصصة
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
يحتوي على:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
الملفات المؤرشفة
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
الملفات الأصلية
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
استخدام اسم الملف المنسق
@@ -8730,14 +8670,6 @@
تحديد الكل
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
لا شيء
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ إظهار
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
العنوان & المحتوى
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
أكثر مثله
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
يساوي
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
فارغ
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
غير فارغ
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
أكبر من
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
أقل من
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
بدون مراسل
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
بدون نوع المستند
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
بدون مسار التخزين
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
بلا أي وسم
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
طلب الحقول المخصصة
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
العنوان:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
المالك:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
المالك ليس في:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
بدون مالك
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
خطأ أثناء تحديث الصلاحيات
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
تم تحديث الصلاحيات بنجاح
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
ستؤدي هذه العملية إلى حذف جميع الكائنات نهائيا.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
تمّ حذف الكائنات بنجاحٍ
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
خطأ أثناء حذف الكائنات
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index e9d65738d..6a1f6ed18 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Закрыць
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Папярэдняя
@@ -30,7 +30,7 @@
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
+ node_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
198
Наступная
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Абраць месяц
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Націсніце, каб убачыць.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Як гэта працуе?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Даступна абнаўленне
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Адбылася памылка падчас захавання налад праверкі абнаўленняў.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
Дададзена
-
- 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
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Без уліку рэгістра
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не прызначана
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Выбраць усё
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Назва & змест
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Больш падобных
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
супадае з
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
пусты
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
не пусты
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
большы за
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
менш за
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Без карэспандэнта
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Без тыпу дакумента
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Без усялякага тэга
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Назва:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf
index ec64caea0..c1c8cb41c 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Затвори
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Назад
@@ -30,7 +30,7 @@
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
+ node_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
198
Напред
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Изберете месец
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Натисни за преглед.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx може автоматично да проверява за актуализации
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Как работи това?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Налична актуализация
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Изгледите на страничната лента са актуализирани
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Грешка при актуализиране на изгледите на страничната лента
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Възникна грешка при запазване на настройките за проверка за актуализация.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Правилно
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Грешно
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Търсене в документи...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Не
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Добавете заявка
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Добавете израз
@@ -3830,6 +3798,18 @@
Относителни дати
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ сега
+
From
@@ -3878,19 +3858,11 @@
Добавен
-
- 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
- 81
+ 76
В рамките на 1 седмица
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
В рамките на 1 месец
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
В рамките на 3 месеца
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
В рамките на 1 година
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Тази година
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Този месец
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
Вчера
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Без чувствителност към големината на буквите
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Задаване на тип на документ
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Задаване на кореспондент
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Имейл
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Създаване на нов потребителски профил
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Промяна на потребителски профил
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp е деактивиран
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Грешка при деактивиране на Totp
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Тип на тригъра
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Задайте планирано отместване на тригера и кое поле за дата да използвате.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Дата на отместване
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Спрямо
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Персонализирано поле
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Персонализирано поле за използване за дата.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Повтарящи се
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Тригерът се повтаря.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Повтарящи се интервални дни
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Повторете задействането на всеки n дни.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Тригер за съвпадащи документи all филтри, посочени по-долу.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Филтриране по файлово име
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Прилага се към документи, които отговарят на това файлово име. Позволени са заместващи символи като *.pdf или *invoice*. Нечувствителен към големи и малки букви.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Филтриране на източници
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Филтриране на път
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Прилагане към документи, които съответстват на този път. Разрешени са заместващи символи, посочени като *. Нормализирани по случай.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Правило за филтриране на поща
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Прилагане за документи, консумирани чрез това правило за поща.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Алгоритъм за съвпадение на съдържанието
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Модел за съвпадение на съдържанието
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Тип на действие
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Задаване на заглавие
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Може да включи някои контейнери, вижте <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документация</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Задаване на етикет
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Задаване нa път за съхранение
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Присвояване на персонализирани полета
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Задаване на собственик
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Задаване на права за разглеждане
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Задаване на права за промяна
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Премахни тагове
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Премахни всички
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Премахни кореспонденти
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Премахни типове документи
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Премахнете пътищата за съхранение
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Премахнете персонализираните полета
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Премахни собственици
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Премахване на права
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Права за преглед
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Редакция на права
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Имейл тема
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Имейл съобщение
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Получатели на имейл
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Прикачете документ
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Url адрес на известяване
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Избери параметри за известяване със съобщение
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Изпратете известяване като JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Известяване параметри
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Известяване съобщение
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Заглавия за известяване
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Добави документа
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не е зададен
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Отвори филтър
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Профила е актуализиран успешно
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Грешка при запазването на профила
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Грешка при генериране на auth токен
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Грешка при прекъсване на връзката със социалния акаунт
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Грешка при извличане на настройките за TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP е активиран успешно
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Грешка при активирането на TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP е деактивиран успешно
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Грешка при деактивирането на TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Възникна грешка при зареждането на tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Персонализирани полета
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Включете:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Архивирани файлове
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Оригинални файлове
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Използвайте форматирано име на файл
@@ -8730,14 +8670,6 @@
Избери всички
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
Нищо
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Покажи
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Заглавие & съдържание
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Тип файл
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Още като
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
е равно на
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
е празно
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
не е празно
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
по-голямо от
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
по-малко от
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Кореспондент:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Без кореспондент
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Тип документ:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Без тип на документа
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Път за съхранение:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Без път за съхранение
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Етикет:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Без никакъв етикет
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Заявка за персонализирани полета
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Заглавие:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
Архивен номер:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Собственик:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Собственикът не е в:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Без собственик
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Грешка при актуализиране на правата
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Правата са актуализирани успешно
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Тази операция ще изтрие завинаги всички обекти.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Обектите са успешно изтрити
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Грешки при изтриване на обектите
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index e81b70b29..2fe918cba 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Tanca
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Anterior
@@ -30,7 +30,7 @@
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
+ node_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
198
Següent
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Seleccioneu mes
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Cliqueu per veure.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx pot cercar actualitzacions automàticament
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Com funciona?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Actualització disponible
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Vistes laterals actualitzades
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error a l'actualitzar vistes laterals
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
S'ha produït un error en desar la configuració de comprovació d'actualitzacions.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Vertader
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Fals
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Cerca docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
No
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Afegir consulta
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Afegir expressió
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
En 1 setmana
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
En 1 mes
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
En 3 mesos
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
En 1 any
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Aquest any
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Aquest mes
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
No distingeix majúscules - minúscules
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assigna tipus document
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assigna corresponsal
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Crea nou compte usuari
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Editar compte usuari
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp desactivat
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Desactivació de Totp fallit
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tipus disparador
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Estableix el desplaçament de l'activador programat i quin camp de data s'utilitza.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Dies de compensació
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Els valors positius s'activaran després de la data, els valors negatius abans.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relatiu a
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Camp personalitzat
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Camp personalitzat per emprar data.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurrent
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Disparador és recurrent.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Dies d'interval recurrent
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeteix disparador cada n dies.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Disparadors per documents coincidents amb all filtres especificats a continuació.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtra nom arxiu
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Aplica als documents que coincideixen amb aquest nom de fitxer. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtra orígens
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtra ruta
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filtra regla de correu
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Aplica a documents consumits amb aquesta regla de correu.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algorisme concordança contingut
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Algorisme concordança patró
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Filtresavançats
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Afegeix filtre
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No s'han definit filtres avançats de flux de treball.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Completeu la configuració de la consulta de camp personalitzat.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tipus acció
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assigna títol
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Pot incloure marcadors, vegeu <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentació</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assigna etiquetes
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assigna ruta emmagatzematge
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assigna camps personalitzats
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assigna propietari
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assigna permisos de visionat
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assigna permisos d'edició
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Elimina etiquetes
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Eliminar tot
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Elimina corresponsals
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Elimina tipus de documents
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Elimina rutes d'emmagatzematge
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Elimina camps personalitzats
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Elimina propietaris
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Elimina permisos
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Veure permisos
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edita permisos
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Assumpte de l'Email
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Cos de l'Email
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Destinataris del mail
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Adjuntar document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Empra paràmetres pel cos del webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Enviar webhook com a JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Paràmetres del webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Cos del Webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Capçaleres del Webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Incloure documents
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
No assignat
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Obrir filtre
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Perfil actualitzat corrcetament
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error desant perfil
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generant auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error desconnectant compte social
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error obtenint les opcions TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activat correctament
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activant TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP desactivat correctament
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error desactivant TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Impressió fallida.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error carregant document per imprimir.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Error al carregar tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Camps personalitzats
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Inclou:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Arxius arxivats
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Fitxers originals
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Utilitza nom arxiu formatat
@@ -8730,14 +8670,6 @@
Selecciona tot
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Selecciona:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Títol i contingut
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Tipus de fitxer
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Més com
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
és igual a
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
està buit
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
no està buit
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
més gran que
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
més petit que
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Corresponsal:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sense corresponsal
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Tipus Document:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sense tipus de document
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Ruta Emmagazematge:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Sense ruta emmagatzematge
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Etiqueta:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sense cap etiqueta
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Consulta de camps personalitzats
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Títol:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Propietari:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Propietari no és:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Sense propietari
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error actualitzant permisos
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permisos actualitzats correctament
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Aquesta operació esborrarà tots els objectes.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objecte esborrat correctament
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error esborrant objectes
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 8f3a8f623..439ce7ce2 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zavřít
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Předchozí
@@ -30,7 +30,7 @@
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
+ node_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
198
Následující
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Vybrat měsíc
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klikněte pro zobrazení.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx umí automaticky kontrolovat aktualizace
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Jak to funguje?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Je dostupná aktualizace
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Pohledy postranního panelu aktualizovány
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Chyba při aktualizaci pohledů postranního panelu
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Došlo k chybě při ukládání nastavení kontroly aktualizací.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Pravda
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Nepravda
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Hledat dokumenty...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Není
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Přidat dotaz
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Přidat výraz
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Během 1 týdne
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Během 1 měsíce
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Během 3 měsíců
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Během 1 roku
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Tento rok
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Tento měsíc
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Nerozlišovat velikost písmen
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Přiřadit typ dokumentu
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Přiřadit korespondenta
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Vytvořit nový uživatelský účet
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Upravit uživatelský účet
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP deaktivováno
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Deaktivace TOTP selhala
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Typ spouštěče
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Nastavit posun naplánovaného spouštěče a použité pole data.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Posun ve dnech
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Kladné hodnoty spustí plán po vybraném datu, záporné před.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Ve vztahu k
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Vlastní pole
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Vlastní pole použité pro datum.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Opakující se
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Spouštěč se opakuje.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Interval opakování ve dnech
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Opakovat spouštěč kadých n dní.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Spouštěč pro dokumenty, které odpovídají všem níže zadaným filtrům.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtr názvu souboru
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Použít na dokumenty odpovídající tomuto názvu souboru. Zástupné symboly, jako *.pdf nebo *faktura*, jsou povoleny. Nerozlišuje velká a malá písmena.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtr zdrojů
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtr cesty
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Použít na dokumenty odpovídající této cestě. Zástupné symboly zadané jako * jsou povoleny. Velká a malá písmena jsou normalizována.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Pravidlo filtrování pošty
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Použít na dokumenty zpracované pomocí tohoto pravidla pošty.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritmus shody obsahu
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Vzor shody obsahu
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Pokročilé filtry
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Přidat filtr
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Nebyly definovány žádné pokročilé filtry pracovního postupu.
+ 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
+ 222,224
- Dokončete konfiguraci dotazu na vlastní pole.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Typ akce
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Přiřadit název
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Může zahrnovat některé zástupné symboly, viz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentace</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Přiřadit štítky
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Přiřadit cestu k úložišti
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Přiřadit vlastní pole
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Přiřadit vlastníka
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Přiřadit oprávnění k zobrazení
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Přiřadit oprávnění k úpravě
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Odstranit štítky
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Odstranit vše
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Odstranit korespondenty
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Odstranit typy dokumentů
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Odstranit cesty k úložišti
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Odstranit vlastní pole
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Odstranit vlastníky
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Odstranit oprávnění
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Oprávnění k zobrazení
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Oprávnění k úpravě
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Předmět e-mailu
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Tělo e-mailu
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Příjemci e-mailu
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Přiložit dokument
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL webhooku
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Použít parametry pro tělo webhooku
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Odeslat data webhooku jako JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parametry webhooku
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Tělo webhooku
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Hlavičky webhooku
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Zahrnout dokument
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Má některý z těchto štítků
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Má všechny tyto štítky
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Nemá tyto štítky
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Nemá tyto korespondenty
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Nemá tyto typy dokumentů
+ Does not have document types
Has storage path
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Nemá tyto cesty k úložišti
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Odpovídá dotazu na vlastní pole
+ Matches custom field query
Create new workflow
@@ -5776,7 +5716,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Odeslat dokument emailem} few {Odeslat dokumenty emailem} other {Odeslat dokumentů emailem}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5828,7 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Některé e-mailové servery mohou odmítnout zprávy s velkými přílohami.
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5844,7 +5784,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Chyba při odesílání dokumentů
+ Error emailing documents
Error emailing document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nepřiřazeno
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Otevřít filtr
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil úspěšně aktualizován
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Chyba při ukládání profilu
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Chyba při generování ověřovacího tokenu
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Chyba při odpojování účtu sociální sítě
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Chyba při získávání nastavení TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP úspěšně aktivováno
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Chyba při aktivaci TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP úspěšně deaktivováno
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Chyba při deaktivaci TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Tisk selhal.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Chyba při načítání dokumentu pro tisk.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Došlo k chybě při načítání tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Vlastní pole
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Zahrnout:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archivované soubory
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Původní soubory
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Použít formátovaný název souboru
@@ -8729,14 +8669,6 @@
Vybrat vše
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Vybrat:
-
None
@@ -8753,6 +8685,18 @@
Žá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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Název a obsah
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Typ souboru
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Podobné
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
rovná se
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
je prázdný
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
není prázdný
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
větší než
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
menší než
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Korespondent:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Bez korespondenta
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Typ dokumentu:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Bez typu dokumentu
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Cesta k úložišti:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Bez cesty k úložišti
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Štítek:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Bez štítku
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Dotaz na vlastní pole
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Název:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
SČA:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Vlastník:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Vlastník není v:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Bez vlastníka
@@ -9627,7 +9571,7 @@
src/app/components/manage/mail/mail.component.html
143
- Zobrazit zpracovanou poštu
+ View Processed Mail
No mail rules defined.
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Chyba při aktualizaci oprávnění
@@ -9831,7 +9775,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Zpracovaná pošta pro
+ Processed Mail for
No processed email messages found.
@@ -9839,7 +9783,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- Nebyly nalezeny žádné zpracované e-mailové zprávy.
+ No processed email messages found.
Received
@@ -9847,7 +9791,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Přijato
+ Received
Processed
@@ -9863,7 +9807,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Zpracované zprávy byly odstraněny
+ Processed mail(s) deleted
Filter by:
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Oprávnění úspěšně aktualizována
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Tato operace trvale odstraní všechny objekty.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objekty úspěšně odstraněny
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Chyba při odstraňování objektů
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index cef5966fd..aa2578fc7 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Luk
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Forrige
@@ -30,7 +30,7 @@
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
+ node_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
198
Næste
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Vælg måned
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klik for at se.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Opdatering tilgængelig
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Skelner ikke mellem store og små bogstaver
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ikke tildelt
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Vælg alle
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel & indhold
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Mere som
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Uden korrespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Uden dokumenttype
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Uden nogen etiket
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index 5b138e6d9..22e6b05b3 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Schließen
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Vorherige
@@ -30,7 +30,7 @@
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
+ node_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
198
Nächste
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Monat auswählen
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Zum Anzeigen klicken.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx kann automatisch auf Aktualisierungen überprüfen
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Wie funktioniert das?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Aktualisierung verfügbar
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Seitenleisten-Ansichten aktualisiert
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Fehler beim Aktualisieren der Seitenleisten-Ansichten
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Wahr
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falsch
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Suche Dokumente...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Nicht
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Abfrage hinzufügen
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Ausdruck hinzufügen
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Innerhalb einer Woche
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Innerhalb eines Monats
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Innerhalb von 3 Monaten
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Innerhalb eines Jahres
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Aktuelles Jahr
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Aktueller Monat
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Groß-/Kleinschreibung irrelevant
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Dokumenttyp zuweisen
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Korrespondent zuweisen
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-Mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Neues Benutzerkonto erstellen
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Benutzerkonto bearbeiten
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP deaktiviert
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
TOTP-Deaktivierung fehlgeschlagen
@@ -5076,7 +5016,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
31
- Arbeitsablauf auslösen bei:
+ Workflow auslösen bei:
Add Trigger
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Auslösertyp
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Legen Sie die Verzögerung des geplanten Auslösers und das zu verwendende Datumsfeld fest.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Verzögerung (Tage)
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive Werte werden nach dem Datum ausgelöst, negative Werte davor.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Bezogen auf
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Benutzerdefiniertes Feld
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Benutzerdefiniertes Feld, das als Datum verwendet wird.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Wiederkehrend
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Der Auslöser ist wiederkehrend.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Wiederkehrendes Intervall (Tage)
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Wiederholt den Auslöser alle n Tage.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Auslöser für Dokumente, die mit allen unten angegebenen Filtern übereinstimmen.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Dateinamen filtern
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Auf Dokumente anwenden, die mit diesem Dateinamen übereinstimmen. Platzhalter wie *.pdf oder *rechung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Quellen filtern
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Pfad filtern
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung normalisiert.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
E-Mail-Regel filtern
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Inhaltsabgleichsalgorithmus
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Inhaltsabgleichsmuster
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Erweiterte Filter
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Filter hinzufügen
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
Keine erweiterten Arbeitsablauf-Filter definiert.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Benutzerdefinierte Feldabfragekonfiguration abschließen.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Aktionstyp
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Titel zuweisen
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Kann einige Platzhalter enthalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>Dokumentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Tags zuweisen
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Speicherpfad zuweisen
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Benutzerdefinierte Felder zuweisen
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Eigentümer zuweisen
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Anzeigeberechtigungen zuweisen
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Bearbeitungsberechtigungen zuweisen
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Tags entfernen
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Alle entfernen
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Korrespondenten entfernen
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Dokumenttypen entfernen
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Speicherpfade entfernen
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Benutzerdefinierte Felder entfernen
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Eigentümer entfernen
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Berechtigungen entfernen
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Anzeigeberechtigungen
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Bearbeitungsberechtigungen
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
E-Mail-Betreff
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
E-Mail-Inhalt
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
E-Mail-Empfänger
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Dokument anhängen
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook-URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Parameter für Webhook-Inhalt verwenden
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Webhook-Payload als JSON senden
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook-Parameter
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook-Inhalt
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook-Kopfzeilen
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Dokument einbeziehen
@@ -5770,13 +5710,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 {Document mailen} other { Dokumente mailen}}
Email address(es)
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nicht zugewiesen
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Filter öffnen
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil erfolgreich aktualisiert
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Fehler beim Speichern des Profils
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Fehler beim Generieren des Authentifizierungstokens
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Fehler beim Trennen des Drittanbieterkontos
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Fehler beim Abrufen der TOTP-Einstellungen
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP erfolgreich aktiviert
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Fehler beim Aktivieren von TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP erfolgreich deaktiviert
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Fehler beim Deaktivieren von TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Drucken fehlgeschlagen.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Fehler beim Laden des Dokuments für den Druck.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Fehler beim Laden des TIFF:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Benutzerdefinierte Felder
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Einschließen:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archivierte Dateien
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Originaldateien
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Verwende formatierten Dateinamen
@@ -8729,14 +8669,6 @@
Alles auswählen
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Auswählen:
-
None
@@ -8751,7 +8683,19 @@
src/app/data/matching-model.ts
45
- Keine
+ Keiner
+
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Anzeigen
Sort
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel & Inhalt
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Dateityp
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Ähnlich zu
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
entspricht
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
ist leer
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
ist nicht leer
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
größer als
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
kleiner als
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Korrespondent:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Ohne Korrespondent
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Dokumenttyp:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Ohne Dokumenttyp
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Speicherpfad:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Ohne Speicherpfad
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Ohne Tag
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Benutzerdefinierte Feldabfrage
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Eigentümer:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Eigentümer nicht in:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Ohne Eigentümer
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Fehler beim Aktualisieren der Berechtigungen
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Berechtigungen wurden erfolgreich aktualisiert
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Dieser Vorgang wird alle Objekte unwiderruflich löschen.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objekte erfolgreich gelöscht
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Fehler beim Löschen der Objekte
@@ -10540,7 +10484,7 @@
src/app/data/matching-model.ts
46
- Keiner: Automatische Zuweisung deaktivieren
+ Keine: 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 dcd0d92cb..9e38a7704 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Κλείσιμο
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Προηγούμενο
@@ -30,7 +30,7 @@
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
+ node_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
198
Επόμενο
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Επιλογή μήνα
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Κάνε κλικ για προβολή.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Πώς λειτουργεί;
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Υπάρχει διαθέσιμη ενημέρωση
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
Προστέθηκε
-
- 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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Χωρίς διάκριση πεζών/κεφαλαίων
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Ανάθεση τύπου εγγράφου
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Ανάθεση ανταποκριτή
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Δημιουργία νέου λογαριασμού χρήστη
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Επεξεργασία λογαριασμού χρήστη
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Δεν έχει ανατεθεί
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Συμπερίληψη:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Επιλογή όλων
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
Κανένα
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Show
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Τίτλος & περιεχόμενο
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Περισσότερα σαν
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
ίσον
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
είναι κενό
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
δεν είναι κενό
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
μεγαλύτερο από
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
μικρότερο από
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Χωρίς ανταποκριτή
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Χωρίς τύπο εγγράφου
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Χωρίς διαδρομή αποθήκευσης
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Χωρίς καμία ετικέτα
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Τίτλος:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Ιδιοκτήτης:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Ιδιοκτήτης όχι σε:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Χωρίς ιδιοκτήτη
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 490cb28c3..1f630186d 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Cerrar
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Anterior
@@ -30,7 +30,7 @@
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
+ node_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
198
Siguiente
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Seleccionar mes
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Haz clic para ver.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx puede comprobar automáticamente si hay actualizaciones
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
¿Cómo funciona?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Actualización disponible
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Vistas de la barra lateral actualizadas
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error al actualizar las vistas de la barra lateral
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Se produjo un error al guardar la configuración de comprobación de actualizaciones.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Verdadero
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falso
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Buscar documentos...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
No
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Añadir consulta
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Añadir expresión
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
En 1 semana
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
En 1 mes
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
En 3 meses
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
En 1 año
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Este año
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Este mes
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Insensible a mayúsculas y minusculas
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Asignar tipo de documento
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Asignar interlocutor
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Crear nuevo usuario
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Editar cuenta de usuario
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp desactivado
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Falló la desactivación del Totp
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tipo de activador
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Establezca el desplazamiento programado del disparador y el campo de fecha a utilizar.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Desplazamiento días
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relativo a
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizado
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizado a utilizar para la fecha.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurrente
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
El disparador es recurrente.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Días del intervalo recurrente
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repita el disparador cada n días.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Activador para documentos que coincidan con todos los filtros especificados a continuación.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtrar nombre del archivo
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Aplicar a documentos que coincidan con este nombre de archivo. Comodines como *.pdf o *factura* están permitidos. No distingue mayúsculas.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtrar fuentes
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtrar ruta
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filtrar regla de correo
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Aplicar a los documentos consumidos mediante esta regla de correo.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritmo de coincidencia de contenido
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Patrón de coincidencia de contenido
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tipo de acción
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Asignar título
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Puede incluir algunos marcadores de posición, vea <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Asignar etiquetas
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Asignar ruta de almacenamiento
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Asignar campos personalizados
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Asignar dueño
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Asignar permisos de vista
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Asignar permisos de edición
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Eliminar etiquetas
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Eliminar todo
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Eliminar interlocutores
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Eliminar tipos de documentos
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Eliminar rutas de almacenamiento
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Eliminar campos personalizados
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Eliminar propietarios
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Eliminar permisos
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Ver permisos
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Editar permisos
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Asunto del correo electrónico
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Cuerpo del correo electrónico
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Destinatarios de correo
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Adjuntar un documento
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL del webhook
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Usar parámetros para el cuerpo del webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Enviar payload del webhook como JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parámetros del webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Cuerpo del webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Encabezados del Webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Incluir documento
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Sin asignar
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Abrir filtro
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6278,7 +6218,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Eliminar página
+ Delete page
Add / remove document split here
@@ -6294,7 +6234,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Dividir aquí
+ Split here
Create new document(s)
@@ -6318,7 +6258,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Copiar metadatos
+ Copy metadata
Delete original
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Perfil actualizado correctamente
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error al guardar el perfil
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generando token de autenticación
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error al desconectar la cuenta de red social
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error obteniendo ajustes TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activado correctamente
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activando TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP desactivado correctamente
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error desactivando TOTP
@@ -7504,7 +7444,7 @@
src/app/components/document-detail/document-detail.component.ts
1392
- Editor de PDF
+ PDF Editor
Send
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8060,13 +8000,13 @@
src/app/components/document-detail/document-detail.component.ts
1423
- Error al ejecutar la operación de edición PDF
+ Error executing PDF edit operation
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Se ha producido un error al cargar el tif:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Campos personalizados
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Incluir:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archivos archivados
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Archivos originales
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Usar nombre de archivo formateado
@@ -8730,14 +8670,6 @@
Seleccionar todo
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titulo y contenido
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Tipo archivo
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Más parecido
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
es igual a
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
está vacío
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
no está vacío
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
es mayor que
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
es menor que
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sin interlocutor
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sin tipo de documento
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Sin ruta de almacenamiento
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sin ninguna etiqueta
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Consulta de campos personalizados
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Título:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
NSA:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Propietario:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Propietario no en:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Sin un propietario
@@ -9372,7 +9316,7 @@
src/app/components/file-drop/file-drop.component.ts
142
- Error al leer elementos soltados:
+ Failed to read dropped items:
correspondent
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error al actualizar permisos
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permisos correctamente actualizados
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Esta operación eliminará todos los objetos permanentemente.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objetos eliminados con éxito
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error al eliminar objetos
@@ -10717,7 +10661,7 @@
src/app/data/paperless-config.ts
214
- Habilitar ASN
+ Enable ASN
ASN Prefix
@@ -10725,7 +10669,7 @@
src/app/data/paperless-config.ts
221
- Prefijo ASN
+ ASN Prefix
Upscale
diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf
index 0e053fd08..f92eb2192 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Close
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Previous
@@ -30,7 +30,7 @@
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
+ node_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
198
Next
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Select month
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Click to view.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Update available
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Case insensitive
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Select all
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Without any tag
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf
index 16dcdb5f9..bef38dd9d 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
نزدیک
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
قبلی
@@ -30,7 +30,7 @@
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
+ node_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
198
طرف دیگر
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
ماه را انتخاب کنید
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
برای مشاهده کلیک کنید
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-NGX به طور خودکار می تواند به روزرسانی ها را بررسی کند
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
این چگونه کار می کند؟
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
به روز رسانی موجود است
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
نمای نوار کناری به روز شده است
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
خطا به روزرسانی نماهای نوار کناری
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
درست
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
دروغ
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
اسناد جستجو ...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
نه
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
اضافه کردن پرس و جو
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
بیان را اضافه کنید
@@ -3830,6 +3798,18 @@
خرمای نسبی
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ در حال حاضر
+
From
@@ -3878,19 +3858,11 @@
اضافه شده
-
- 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
- 81
+ 76
ظرف 1 هفته
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
طی 1 ماه
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
ظرف 3 ماه
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
ظرف 1 سال
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
امسال
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
این ماه
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
دیروز
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
غیر حساس
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
نوع سند را اختصاص دهید
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
خبرنگار را اختصاص دهید
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
ایمیل
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
حساب کاربری جدید ایجاد کنید
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
ویرایش حساب کاربری
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP غیرفعال
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
غیرفعال کردن TOTP انجام نشد
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
نوع ماشه
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
تنظیم برنامه ریزی شده را جبران کنید و از کدام قسمت تاریخ استفاده کنید.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
روزهای جبران
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
نسبت به
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
قسمت سفارشی
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
قسمت سفارشی برای استفاده برای تاریخ.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
عود
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
ماشه در حال تکرار است.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
روزهای مکرر
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
ماشه را هر n روز تکرار کنید.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
نام پرونده فیلتر
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
به اسنادی که مطابق با این نام پرونده هستند ، مراجعه کنید. کارتهای وحشی مانند *.pdf یا *فاکتور *مجاز است. مورد غیر حساس
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
منابع فیلتر
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
مسیر فیلتر
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
قانون نامه نامه فیلتر
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
به اسناد مصرفی از طریق این قانون نامه استفاده کنید.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
الگوریتم تطبیق محتوا
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
الگوی تطبیق محتوا
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
نوع عمل
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
عنوان اختصاص دادن
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
اختصاص برچسب ها
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
مسیر ذخیره سازی را اختصاص دهید
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
اختصاص زمینه های سفارشی
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
مالک
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
مجوزهای مشاهده را اختصاص دهید
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
مجوزهای ویرایش را اختصاص دهید
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
حذف برچسب ها
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
حذف همه
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
خبرنگاران را حذف کنید
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
حذف انواع سند
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
مسیرهای ذخیره سازی را حذف کنید
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
زمینه های سفارشی را حذف کنید
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
صاحبان را حذف کنید
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
مجوزها را حذف کنید
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
مشاهده مجوزها
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
مجوزها را ویرایش کنید
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
موضوع ایمیل
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
بدنه ایمیل
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
دریافت کنندگان ایمیل
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
سند پیوست
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL Webhook
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
از پارامترهایی برای بدنه Webhook استفاده کنید
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
ارسال Webhook Payload به عنوان JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
پارامترهای وب
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
بدنه وب
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
هدرهای Webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
شامل سند
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
اختصاص داده نشده است
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
پروفایل با موفقیت به روز شد
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
نمایه ذخیره خطا
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
خطای ایجاد کننده AUTH
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
قطع خطا حساب اجتماعی
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
خطا در تنظیمات TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP با موفقیت فعال شد
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
خطا در فعال کردن TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP با موفقیت غیرفعال شد
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
خطای غیرفعال کردن TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
زمینه های سفارشی
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
شامل:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
پرونده های بایگانی شده
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
پرونده های اصلی
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
از نام پرونده فرمت شده استفاده کنید
@@ -8730,14 +8670,6 @@
همه را انتخاب کنید
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
هیچ کدام
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ نشان دادن
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
نوع پرونده
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
بیشتر شبیه
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
برابر است
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
خالی است
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
خالی نیست
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
بزرگتر از
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
کمتر از
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
بدون خبرنگار
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
بدون نوع سند
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
بدون مسیر ذخیره سازی
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
بدون هیچ برچسب
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
پرس و جو زمینه های سفارشی
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
بدون مالک
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
خطای به روزرسانی مجوزها
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
مجوزها با موفقیت به روز شد
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
این عمل به طور دائم تمام اشیاء را حذف می کند.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
اشیاء با موفقیت حذف شدند
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
خطای حذف اشیاء
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index 9fbe4cb35..15e517d78 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Sulje
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Edellinen
@@ -30,7 +30,7 @@
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
+ node_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
198
Seuraava
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Valitse kuukausi
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Näytä klikkaamalla.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx voi tarkistaa päivitykset automaattisesti
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Kuinka tämä toimii?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Päivitys saatavilla
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Virhe tallennettaessa päivitystarkistuksen asetuksia
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Kirjainkoko ei vaikuta
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Määritä asiakirjatyyppi
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Määritä yhteyshenkilö
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Sähköposti
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Luo uusi käyttäjätili
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Muokkaa käyttäjätiliä
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Mukautettu kenttä
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Suodata tiedostonimi
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Suodata lähteet
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Suodata polku
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Suodata sähköpostisääntö
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Määritä omistaja
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Määritä katseluoikeudet
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Määritä muokkausoikeudet
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Poista tunnisteet
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Poista kaikki
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Poista mukautetut kentät
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Poista omistajat
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Poista oikeudet
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Näytä oikeudet
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Muokkaa oikeuksia
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ei määritetty
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profiili päivitetty onnistuneesti
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Virhe profiilia tallentaessa
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Virhe yhteyttä sosiaaliseen tiliin katkaistaessa
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Mukautetut kentät
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Sisällytä:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Arkistoidut tiedostot
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Alkuperäiset tiedostot
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Käytä muotoiltua tiedostonimeä
@@ -8730,14 +8670,6 @@
Valitse kaikki
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Otsikko & sisältö
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Tiedostotyyppi
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Enemmän kuin
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
on yhtä kuin
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
on tyhjä
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
ei ole tyhjä
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
suurempi kuin
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
pienempi kuin
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Ilman kirjeenvaihtajaa
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Ilman asiakirjatyyppiä
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Ilman tunnistetta
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Otsikko:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Omistaja:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Virhe käyttöoikeuksia päivittäessä
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Käyttöoikeudet päivitettiin onnistuneesti
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 824b925ac..3fb20a7d8 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Fermer
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Précédent
@@ -30,7 +30,7 @@
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
+ node_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
198
Suivant
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Sélectionner le mois
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Cliquer pour visualiser.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Comment ça fonctionne ?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Mise à jour disponible
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Vues sur la barre latérale mises à jour
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Erreur lors de la mise à jour des vues de la barre latérale
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Vrai
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Faux
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Rechercher un document...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Non
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Ajouter une requête
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Ajouter une expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Dans un délai de 1 semaine
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Dans un délai de 1 mois
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Dans un délai de 3 mois
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Dans un délai de 1 an
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Cette année
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Ce mois-ci
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Insensible à la casse
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Affectation du type de document
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Affecter le correspondant
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Adresse électronique
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Créer un nouveau compte utilisateur
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Modifier le compte utilisateur
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP désactivé
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
La désactivation du TOTP a échoué
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Type de déclenchement
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Définissez le décalage du déclencheur planifié et le champ de date à utiliser.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Décalage en jours
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Les valeurs positives se déclencheront après la date et les valeurs négatives avant.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relatif à
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Champ personnalisé
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Champ personnalisé à utiliser pour la date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Récurrent
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Le déclencheur est récurrent.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Intervalle récurrent en jours
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Répétez le déclencheur tous les n jours.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Déclenche pour les documents qui correspondent à tousles filtres spécifiés ci-dessous.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtrer le nom de fichier
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Appliquer aux documents qui correspondent à ce nom de fichier. Les expressions telles que *.pdf ou *facture* sont autorisées. Insensible à la casse.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtrer les sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtrer le chemin
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Normalisation de la casse.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Règle de filtrage des messages
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Appliquer aux documents traités par cette règle de courrier.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algorithme de correspondance de contenu
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Modèle de correspondance au contenu
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Filtres avancés
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Ajouter un filtre
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Aucun filtre de workflow avancé défini.
+ 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
+ 222,224
- Complétez la configuration de requête de champ personnalisée.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Type d'action
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Attribuer un titre
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Peut inclure certains caractères génériques, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assigner des étiquettes
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Attribuer un chemin de stockage
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Affecter des champs personnalisés
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Affecter un propriétaire
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Affecter des autorisations de consultation
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assigner des autorisations d'édition
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Supprimer des étiquettes
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Tout supprimer
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Supprimer des correspondants
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Supprimer des types de document
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Supprimer des chemins de stockage
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Supprimer des champs personnalisés
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Supprimer des propriétaires
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Supprimer des autorisations
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Autorisations de consultation
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Autorisations de modification
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Objet du courriel
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Corps du courriel
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Destinatires du courriel
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Joindre un document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL du Webhook
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Utiliser les paramètres pour le corps du webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Envoyer le payload au format JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Paramètres du webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Corps du Webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
En-têtes Webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Inclure le document
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- A l'un de ces tags
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- A tous ces tags
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Ne possède pas ces tags
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- N'a pas de correspondant
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- N'a pas de type de document
+ Does not have document types
Has storage path
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- N'a pas de chemins de stockage
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Correspond à la requête de champ personnalisé
+ Matches custom field query
Create new workflow
@@ -5776,7 +5716,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural,=1 {Envoyer le document} other {Envoyer les documents}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5828,7 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Certains serveurs de messagerie peuvent rejeter les messages comportant de grandes pièces jointes.
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5844,7 +5784,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Erreur lors de l'envoi des documents
+ Error emailing documents
Error emailing document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Non affecté
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Ouvrir le filtre
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil mis à jour avec succès
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Erreur lors de l'enregistrement du profil
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Erreur lors de la génération du jeton d'authentification
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Erreur lors de la déconnexion du compte social
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Erreur lors de la récupération des paramètres du TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activé avec succès
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Erreur lors de l’activation du TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP désactivé avec succès
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Erreur lors de la désactivation du TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Impression échouée.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Erreur lors du chargement du document pour impression.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Une erreur s’est produite lors du chargement du tiff :
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Champs personnalisés
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Inclure :
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Fichiers archivés
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Fichiers originaux
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Utiliser le nom de fichier formaté
@@ -8729,14 +8669,6 @@
Sélectionner tout
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Sélectionner :
-
None
@@ -8753,6 +8685,18 @@
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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titre & contenu
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Type de fichier
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Plus comme
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
est égal à
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
est vide
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
n'est pas vide
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
est supérieur à
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
est inférieur à
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondant :
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sans correspondant
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Type de document :
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sans type de document
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Chemin de stockage :
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Sans chemin de stockage
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Étiquette :
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sans étiquette
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Champs personnalisés de requête
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titre :
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
NSA :
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Propriétaire :
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Propriétaire non présent dans :
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Sans propriétaire
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Erreur lors de la mise à jour des droits d'accès
@@ -9839,7 +9783,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
-
+ No processed email messages found.
Received
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Les droits d'accès ont bien été mis à jour
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Cette opération supprimera définitivement tous les objets.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects supprimés avec succès
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Erreur lors de la suppression des objets
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index e49585147..437f90134 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
סגור
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
הקודם
@@ -30,7 +30,7 @@
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
+ node_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
198
הבא
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
בחירת חודש
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
לחץ להצגה.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
איך זה עובד?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
קיים עדכון
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
תצוגת סרגל צד עודכנה
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
שגיאה בעדכון תצוגת סרגל צד
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
ארעה שגיאה בתהליך השמירה. בודק הגדרות
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
אמת
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
שקר
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
חפש מסמכים...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
לא
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
הוסף שאילתה
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
הוסף ביטוי
@@ -3830,6 +3798,18 @@
תאריכים יחסיים
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ עכשיו
+
From
@@ -3878,19 +3858,11 @@
נוסף
-
- 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
- 81
+ 76
בתוך שבוע אחד
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
בתוך חודש אחד
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
בתוך שלושה חודשים
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
בתוך שנה אחת
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
השנה הזאת
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
החודש הזה
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
אתמול
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
חסר רגישות תווים גדולים/קטנים (אנגלית)
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
שייך סוג מסמך
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
שייך מכותב זה
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
דוא"ל
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
צור חשבון חדש
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
ערוך את החשבון
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp בוטל
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
השבתת Totp נכשלה
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
סוג טריגר
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
הגדרת היסט טריגר מתוזמן ואיזה שדה תאריך להשתמש בו.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
ימי היסט
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
ערכים חיוביים יפעילו את תהליך העבודה לפני התאריך, וערכים שליליים אחריו.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
ביחס ל
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
שדה מותאם אישית
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
שדה מותאם אישית לשימוש כתאריך.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
מחזורי
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
הטריגר חוזר על עצמו.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
מחזור ימי מרווח
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
חזור על הטריגר כל n ימים.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
טריגר למסמכים התואמים את כל המסננים המפורטים מטה.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
סנן לפי שם קובץ
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
חל על מסמכים התואמים את שם קובץ זה. תווים כלליים כגון *.pdf או *invoice* מותרים. לא רגיש רישיות.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
מקורות מסננים
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
מסנן לפי נתיב שמירה
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
חל על מסמכים התואמים את נתיב זה. תווים כלליים המצוינים כ-* מותרים. רישיות מנורמלת.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
סנן לפי כלל דואל
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
חל על מסמכים שנצרכו דרך כלל דואר זה.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
אלגוריתם התאמת תוכן
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
תבנית התאמת תוכן
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
סוג פעולה
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
הקצה כותרת
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
יכול לכלול כמה placeholders, ראה <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>תיעוד</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
הקצה תגיות
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
הקצה נתיב אחסון
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
הקצה שדות מותאמים אישית
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
הקצה בעלים
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
הקצה הרשאות צפיה למשתמש
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
הקצה הרשאות עריכה למשתמש
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
הסירו תגיות
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
הסר הכל
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
הסר מכותבים
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
הסר סוגי מסמכים
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
הסר מיקום אכסון
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
הסרת שדות מותאמים אישית
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
הסר בעלים
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
הסר הרשאות
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
צפה בהרשאות
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
ערוך הרשאות
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
נושא הדוא"ל
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
גוף אימייל
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
נמעני אימייל
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
צרף קובץ
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
כתובת ווב-הוק
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
שימוש בפרמטרים עבור גוף הווב-הוק
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
שליחת מטען ייעודי של ווב-הוק כ-JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
פרמטרים של הווב-הוק
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
גוף הווב-הוק
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
כותרות הווב-הוק
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
כלול מסמך
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
לא הוקצה
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
פתחו מסנן
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
פרופיל עודכן בהצלחה
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
שגיאה בשמירת פרופיל
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
שגיאה ביצירת אסימון אימות
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
שגיאה בניתוק חשבון חברתי
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
שגיאה באחזור הגדרות TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP הופעל בהצלחה
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
שגיאה בהפעלת TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP הושבת בהצלחה
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
שגיאה בהשבתת TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
הדפסה נכשלה.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
שגיאה בעת טעינת קובץ tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
שדות מותאמים אישית
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
כולל:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
קובצי ארכיון
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
קבצים מקוריים
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
השתמש בשם קובץ מפורמט
@@ -8730,14 +8670,6 @@
בחר הכל
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
ללא
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ הצג
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
כותרת & תוכן
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
סוג קובץ
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
עוד כמו
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
שווה
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
הינו ריק
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
אינו ריק
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
גדול מ
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
קטן מ
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
שולח:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
ללא מכותבים
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
סוג מסמך:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
ללא סוג מסמך
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
ללא נתיב אחסון
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
ללא תיוג
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
שאילתת שדות מותאמים אישית
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
כותרת:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
מס"ד:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
בעלים:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
הבעלים לא נכלל בתוך:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
ללא בעלים
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
שגיאת שינוי הרשאות
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
ההרשאות עודכנו בהצלחה
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
פעולה זו תמחק לצמיתות את כל האובייקטים.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
הפריטים נמחקו בהצלחה
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
שגיאה במחיקת פריטים
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 590ca22ae..604d64132 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zatvori
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Prethodno
@@ -30,7 +30,7 @@
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
+ node_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
198
Sljedeće
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Odaberi mjesec
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klikni za prikaz.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx može automatski provjeriti aktualizaciju
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Kako ovo radi?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Dostupno ažuriranje
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Došlo je do pogreške prilikom spremanja postavki ažuriranja.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Neosjetljivo na velika i mala slova
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nije dodijeljen
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Uključi:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Select all
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Without any tag
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf
index 7e6ebbeab..dad8a0087 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Bezár
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Előző
@@ -30,7 +30,7 @@
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
+ node_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
198
Következő
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Válassza ki a hónapot
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Kattintson a megtekintéshez.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Hogyan működik ez?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Frissítés elérhető
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Oldalsáv nézetek frissítve
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Hiba az oldalsáv nézetek frissítésében
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Hiba történt a frissítési ellenőrzési beállítások mentése közben.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Igaz
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Hamis
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Keresés a doksiban...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Nem
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Lekérdezés hozzáadása
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Kifejezés hozzáadása
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Egy héten belül
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Egy hónapon belül
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Három hónapon belül
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Egy éven belül
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Idén
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Ebben a hónapban
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Nagy- és kisbetű érzéketlen
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Dokumentumtípus hozzárendelése
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Levelező kijelölése
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Új felhasználói fiók létrehozása
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Felhasználói fiók szerkesztése
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp letiltva
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp letiltási hiba
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Aktiválás típusa
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Aktiválási eltolás és a használt dátum mező beállítása.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Eltolás ennyi nappal
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Pozitív értékek a dátum után, negatív értékek a dátum előtt fognak aktiválódni.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Ehhez képest
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Egyéni mező
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
A dátumhoz használt egyéni mező.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Ismétlődő
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Az aktiválás ismétlődik.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ismétlődés intervalluma napokban
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ismételje meg az aktiválást n naponta.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Azon dokumentumoknál aktiválódjon, amelyekre az alábbi szűrők mindegyike igaz.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Szűrő fájlnév
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
A fájlnévnek megfelelő dokumentumokra alkalmazza. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Szűrőforrások
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Szűrési útvonal
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Alkalmazza az erre az elérési útvonalra vonatkozó dokumentumokra. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűkre nem érzékeny.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Mail szabály szűrő
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Alkalmazza az ezen a levelezési szabályon keresztül feldolgozott dokumentumokra.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Tartalom mintázati algoritmus
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Tartalom mintázata
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tevékenység típusa
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Cím hozzárendelése
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Tartalmazhat dinamikus mezőket, lásd <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>a dokumentációban</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Címkék hozzárendelése
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Tárolási útvonal hozzárendelése
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Egyedi mezők hozzárendelése
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Tulajdonos kijelölése
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Nézetjogosultságok hozzárendelése
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Szerkesztési engedélyek hozzárendelése
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Címkék eltávolítása
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Összes eltávolítása
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Levelezőpartner eltávolítása
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Dokumentumtípus eltávolítása
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Tárolási útvonal eltávolítása
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Egyéni mezők eltávolítása
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Tulajdonosok eltávolítása
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Jogosultságok eltávolítása
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Jogosultságok megjelenítése
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Jogosultságok szerkesztése
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
E-mail tárgya
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
E-mail szövege
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email címzettek
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Dokumentum csatolása
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Paraméterek használata a webhook törzsében
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Webhook tartalom küldése JSON-ként
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook paraméterek
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook törzse
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook fejlécei
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Dokumentum melléklése
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nincs hozzárendelve
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
filter megnyitása
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil frissítése sikeresen megtörtént
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Hiba a profil mentésekor
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Hiba az auth token létrehozásakor
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Hiba a közösségi fiók szétkapcsolásakor
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Hiba a TOTP beállítások lekérésekor
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP aktiválása sikeres
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Sikertelen TOTP aktiválás
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deaktiválása sikeres
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Sikertelen TOTP deaktiválás
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Hiba tiff betöltésekor:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Egyéni mezők
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Tartalmazza:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archivált fájlok
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Eredeti fájlok
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Formázott fájlnév használata
@@ -8730,14 +8670,6 @@
Összes kiválasztása
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Cím & tartalom
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Fájltípus
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Bővebben
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
egyenlő
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
üres
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
nem üres
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
nagyobb, mint
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
kevesebb, mint
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Levelezőpartner:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Kapcsolattartó nélkül
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Dokumentumtípus:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Dokumentumtípus nélkül
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Tárolási útvonal:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Tárolási útvonal nélkül
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Címke:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Címke nélkül
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Egyéni mező lekérdezés
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Cím:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Tulajdonos:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
A tulajdonos nincs:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Tulajdonos nélkül
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Hiba az engedélyek frissítésében
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Az engedélyek sikeresen frissültek
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Ez a művelet véglegesen törli az összes objektumot.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objektumok sikeresen törölve
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Hiba az objektumok törlésekor
diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf
index f6201c3cc..87340aea8 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Tutup
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Sebelumnya
@@ -30,7 +30,7 @@
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
+ node_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
198
Selanjutnya
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Pilih bulan
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Ketuk untuk melihat.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx dapat secara otomatis memeriksa pembaruan
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Bagaimana ini dapat bekerja?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Pembaruan tersedia
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Tampilan bilah samping telah diperbarui
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Kesalahan saat memperbarui tampilan sisi
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Benar
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Salah
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Cari dokumen...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Tidak
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Tambah permintaan
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Tambah ekspresi
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Dalam 1 minggu
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Dalam 1 bulan
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Dalam 3 bulan
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Dalam 1 tahun
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Tahun ini
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Bulan ini
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Tidak membedakan huruf besar kecil
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Tetapkan jenis dokumen
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Tetapkan koresponden
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Surel
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Buat akun pengguna baru
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Ubah akun pengguna
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp dinonaktifkan
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Gagal menonaktifkan Totp
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Jenis pemicu
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Atur jeda pemicu terjadwal dan kolom tanggal yang digunakan.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Hari jeda
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Nilai positif akan memicu setelah tanggalnya, nilai negatif sebelum tanggalnya.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relatif terhadap
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Bidang khusus
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Bidang khusus yang digunakan untuk tanggal.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Berulang
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Pemicu berulang.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Hari interval berulang
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ulangi pemicu setiap n hari.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Aktifkan untuk dokumen yang cocok semua penyaring ditentukan di bawah.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter nama berkas
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Terapkan pada dokumen yang sepenuhnya cocok dengan nama berkas ini. Karakter pengganti seperti *.pdf atau *faktur* diperbolehkan. Abaikan huruf besar/kecil.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sumber
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter lokasi
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Terapkan pada dokumen yang sepenuhnya cocok dengan lokasi ini. Karakter pengganti seperti * diperbolehkan. Huruf dinormalisasi.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter aturan surel
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Terapkan pada dokumen yang di consume lewat aturan surat ini.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Konten yang sesuai algoritma
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Konten sesuai pola
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Filter Lanjutan
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Tambah Filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Lengkapi konfigurasi kueri bidang khusus
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Jenis aksi
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Tetapkan judul
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Bisa memasukkan beberapa placeholder, lihat <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentasi</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Tetapkan label
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Tetapkan lokasi penyimpanan
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Menetapkan variasi kolom
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Tetapkan pemilik
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Tetapkan izin tampilan
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Tetapkan izin edit
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Hapus label
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Hapus semua
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Hapus koresponden
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Hapus jenis dokumen
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Hapus lokasi penyimpanan
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Hapus kolom khusus
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Hapus pemilik
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Hapus izin
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Lihat izin
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Sunting izin
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Subjek email
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Isi email
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Penerima email
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Lampirkan dokumen
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Url webhook
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Gunakan parameter untuk isi webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Kirim payload webhook sebagai JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parameter webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Isi webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Header webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Sertakan dokumen
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Tidak ditugaskan
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Buka saring
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil berhasil diperbarui
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Kesalahan saat menyimpan profil
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Kesalahan saat membuat token autentikasi
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Kesalahan saat melepaskan akun sosial
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Gagal mengambil pengaturan TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP berhasil diaktifkan
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Gagal mengaktifkan TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP berhasil dinonaktifkan
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Gagal menonaktifkan TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Pencetakan gagal.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error memuat dokumen untuk dicetak.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Terjadi kesalahan saat memuat tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Bidang khusus
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Sertakan:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Berkas terarsip
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Berkas asli
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Gunakan nama berkas terformat
@@ -8729,14 +8669,6 @@
Pilih semua
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8753,6 +8685,18 @@
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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
kosong
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
tidak kosong
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
lebih besar dari
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
kurang dari
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Tanpa koresponden
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Tanpa tipe dokumen
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Tanpa lokasi penyimpanan
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Tanpa label apapun
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Tanpa pemilik
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 122b84fd1..6435b3eed 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Chiudi
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Precedente
@@ -30,7 +30,7 @@
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
+ node_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
198
Successivo
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Seleziona il mese
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Clicca per visualizzare.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx può controllare automaticamente la presenza di aggiornamenti
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Come funziona?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Aggiornamento disponibile
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Viste barra laterale aggiornate
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Errore nell'aggiornamento delle viste della barra laterale
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Vero
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falso
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Ricerca di documenti...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Non
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Aggiungi query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Aggiungi espressione
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Entro una settimana
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Entro 1 mese
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Entro 3 mesi
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Entro 1 anno
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Quest'anno
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Questo mese
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Senza distinzione tra maiuscole e minuscole
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assegna tipo di documento
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assegna corrispondente
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4852,7 +4792,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Parent
+ Parent
Inbox tag
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Crea nuovo account utente
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Modifica account utente
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP disattivato
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Disattivazione del TOTP fallita
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tipo di trigger
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Imposta un offset di attivazione programmato e quale campo data usare.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset in giorni
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Valori positivi si attiveranno dopo la data, i valori negativi prima.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relativo a
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizzato
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizzato da usare per la data.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Ricorrente
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Il trigger si ripete.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Intervallo di ripetizione in giorni
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ripeti il trigger ogni n giorni.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Attiva per i documenti che corrispondono a tutti filtri specificati di seguito.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtra nome file
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Ignora maiuscole e minuscole.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtra sorgenti
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtro percorso
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Applica ai documenti che corrispondono a questo percorso. I caratteri jolly specificati come * sono consentiti. Case-normalizzato.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Regola e-mail
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Applica ai documenti elaborati attraverso questa regola di posta.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritmo di corrispondenza contenuti
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Modello di corrispondenza contenuti
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Filtri Avanzati
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Aggiungi filtro
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Nessun filtro avanzato del workflow definito.
+ 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
+ 222,224
- Completa la configurazione della query di campo personalizzato.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tipo di Azione
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assegna titolo
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Può includere alcuni segnaposto, vedere <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assegna tag
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assegna percorso di archiviazione
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assegna campi personalizzati
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assegna proprietario
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assegna permessi di visualizzazione
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assegna permessi di modifica
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Rimuovi tag
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Rimuovi tutto
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Rimuovi corrispondenti
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Rimuovi tipi di documento
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Rimuovi percorsi di archiviazione
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Rimuovi campi personalizzati
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Rimuovi proprietari
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Rimuovi permessi
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Visualizza permessi
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Modifica permessi
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Oggetto email
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Corpo e-mail
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Destinatari email
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Allega documento
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Usa parametri per il corpo del webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Invia il payload del webhook come JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parametri Webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Corpo Webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Header Webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Includi documento
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Ha qualcuna di queste etichette
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Ha tutte queste etichette
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Non ha queste etichette
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Non ha corrispondenti
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Non ha questi tipi di documento
+ Does not have document types
Has storage path
@@ -5736,7 +5676,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Ha percorso di archiviazione
+ Has storage path
Does not have storage paths
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Non ha percorso di archiviazione
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Corrisponde a campo personalizzato
+ Matches custom field query
Create new workflow
@@ -5828,7 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Alcuni server di posta elettronica possono rifiutare messaggi con allegati di grandi dimensioni.
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5844,7 +5784,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Errore durante l'invio dei documenti
+ Error emailing documents
Error emailing document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Non assegnato
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Apri filtro
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profilo aggiornato con successo
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Errore durante il salvataggio del profilo
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Errore nella generazione del token di autenticazione
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Errore disconnessione account social
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Errore nel recupero delle impostazioni TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP attivato con successo
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Errore nell'attivazione del TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP disattivato con successo
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Errore nella disattivazione del TOTP
@@ -7098,7 +7038,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- Ok
+ OK
Copy Raw Error
@@ -7480,7 +7420,7 @@
src/app/components/document-detail/document-detail.component.html
58
- Stampa
+ Print
More like this
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,27 +8006,27 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
- Stampa non riuscita.
+ Print failed.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
- Errore nel caricamento del documento per la stampa.
+ Error loading document for printing.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Errore durante il caricamento della TIFF:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Campi personalizzati
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Includere:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
File archiviati
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
File originali
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Usa nome file formattato
@@ -8729,14 +8669,6 @@
Seleziona tutti
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Seleziona:
-
None
@@ -8753,6 +8685,18 @@
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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titolo & contenuto
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Tipo di file
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Più come
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
uguale a
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
è vuoto
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
non è vuoto
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
maggiore di
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
minore di
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Corrispondente:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Senza corrispondente
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Tipo di documento:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Senza tipo di documento
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Percorso di archiviazione:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Senza percorso di archiviazione
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Etichetta:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Senza alcun tag
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Query campi personalizzati
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titolo:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Proprietario:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Proprietario non in:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Senza proprietario
@@ -9627,7 +9571,7 @@
src/app/components/manage/mail/mail.component.html
143
- Visualizza Email Elaborata
+ View Processed Mail
No mail rules defined.
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Errore durante l'aggiornamento dei permnessi
@@ -9839,7 +9783,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- Nessun messaggio email elaborato trovato.
+ No processed email messages found.
Received
@@ -9847,7 +9791,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Ricevuto
+ Received
Processed
@@ -9855,7 +9799,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Elaborato
+ Processed
Processed mail(s) deleted
@@ -9863,7 +9807,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Email processate cancellate
+ Processed mail(s) deleted
Filter by:
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permessi aggiornati
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Questa operazione eliminerà permanentemente tutti gli oggetti.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Oggetti eliminati con successo
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Errore nell'eliminazione degli oggetti
@@ -10435,7 +10379,7 @@
src/app/data/custom-field.ts
55
- Testo Lungo
+ Long Text
Search score
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index 409802fdc..755badfca 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
閉じる
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
前へ
@@ -30,7 +30,7 @@
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
+ node_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
198
次へ
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
月を選択
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
クリックして表示
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngxは自動的にアップデートを確認できます
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
アップデートの自動確認機能について
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
アップデートがあります。
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
サイドバービューを更新しました
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
サイドバービューの更新に失敗しました
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
アップデートの確認設定の保存中にエラーが発生しました
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
ドキュメントを検索...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
クエリの追加
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
式の追加
@@ -3830,6 +3798,18 @@
相対的な日付
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ 現在
+
From
@@ -3878,19 +3858,11 @@
追加日
-
- 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
- 81
+ 76
1週間以内
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
1か月間以内
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
3か月間以内
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
1年以内
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
今年
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
今月
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
昨日
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
大文字・小文字を区別しない
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
ドキュメントタイプの割り当て
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
発信元の割り当て
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
メールアドレス
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
新規ユーザーアカウントの作成
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
ユーザーアカウントの編集
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTPが無効です
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
TOTPの無効化に失敗しました
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
トリガーの種類
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
スケジュールされたトリガー オフセットと使用する日付フィールドを設定します。
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
オフセット日
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
相対的に
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
カスタムフィールド
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
日付に使用するカスタムフィールドです。
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
繰り返し
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
トリガーは繰り返します。
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
繰り返しの間隔
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
n日ごとにトリガーを繰り返します。
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
以下の すべての フィルターにマッチするドキュメントのトリガー
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
ファイル名のフィルター
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
このファイル名にマッチするドキュメントに適用されます。 *.pdf や *請求書* などのワイルドカードが使用できます。大文字・小文字を区別しません。
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
ソースのフィルター
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
パスのフィルター
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
このパスにマッチするドキュメントに適用されます。 * で指定されたワイルドカードが使用できます。大文字・小文字を区別しません。
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
メールルールのフィルター
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
このメールルールを介して利用されるドキュメントに適用されます。
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
内容のマッチングアルゴリズム
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
内容のマッチングパターン
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
アクションの種類
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
タイトルの割り当て
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
プレースホルダーを含めることができます。 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>マニュアル</a> を参照してください。
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
タグの割り当て
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
フォルダーの割り当て
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
カスタム項目の割り当て
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
所有者の割り当て
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
表示権限の割り当て
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
編集権限の割り当て
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
タグの削除
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
すべて削除
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
発信元の削除
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
ドキュメントタイプの削除
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
フォルダーの削除
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
カスタム項目の削除
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
所有者の削除
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
権限の削除
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
権限の表示
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
権限の編集
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
メールの件名
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
メール本文
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
メール受信者
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
ドキュメントを添付
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Webhook本文にパラメータを使用する
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
WebhookペイロードをJSONとして送信
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhookパラメータ
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook本文
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhookヘッダー
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
ドキュメントを含める
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未割り当て
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
フィルタを開く
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
プロフィールは正常に更新されました
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
プロフィールの保存に失敗しました
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
認証トークンの生成に失敗しました
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
ソーシャルアカウントの接続解除に失敗しました
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
TOTP設定の取得中にエラーが発生しました
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTPが正常に有効になりました
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
TOTPの有効化に失敗しました
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTPを無効にしました
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
TOTPの無効化に失敗しました
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
TIFFの読み込み中にエラーが発生しました:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
カスタム項目
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
以下を含める:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
アーカイブされたファイル
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
元のファイル
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
フォーマット済みのファイル名を使用
@@ -8729,14 +8669,6 @@
すべて選択
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8753,6 +8685,18 @@
なし
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ 表示
+
Sort
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
タイトルと内容
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
ファイル形式
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
類似
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
が次の値と等しい
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
が空である
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
が空でない
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
が次の値より大きい
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
が次の値より小さい
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
発信元:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
発信元なし
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
ドキュメントタイプ:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
ドキュメントタイプなし
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
ストレージパス:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
フォルダーなし
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
タグ:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
タグなし
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
カスタムフィールドのクエリ
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
タイトル:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
所有者:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
所有者がいない:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
所有者なし
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
権限の更新に失敗しました
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
権限は正常に更新されました
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
この操作により、すべてのオブジェクトは完全に削除されます。
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
オブジェクトは正常に削除されました
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
オブジェクトの削除に失敗しました
diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf
index 28c3cebf0..2aeda03a4 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
닫기
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
이전
@@ -30,7 +30,7 @@
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
+ node_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
198
다음
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
월 선택
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
클릭해서 보기.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다.
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
어떻게 작동할까요?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
업데이트 가능
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
사이드바 업데이트 완료
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
사이드바 업데이트 중 오류가 발생했습니다
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
설정을 저장하는 중 오류가 발생하였습니다.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
참
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
거짓
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
문서 검색...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
아님
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
쿼리 추가
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
표현식 추가
@@ -3830,6 +3798,18 @@
상대적 날짜
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ 지금
+
From
@@ -3878,19 +3858,11 @@
추가됨
-
- 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
- 81
+ 76
1주일 이내
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
1개월 이내
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
3개월 이내
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
1년 이내
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
올해
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
이번 달
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
어제
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
대소문자 구분 안 함
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
이 문서 유형 지정
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
에서 통신원을 지정합니다.
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
이메일
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
새로운 사용자 계정 만들기
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
사용자 계정 수정
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp 비활성화
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp 비활성화 실패됨
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
트리거 유형
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
예약 트리거 오프셋과 사용할 날짜 필드를 설정합니다.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
오프셋 날짜
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
양수 값은 날짜 이후에, 음수 값은 그 이전에 트리거됩니다.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
상대적
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
사용자 정의 필드
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
날짜에 사용할 사용자 지정 필드입니다.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
반복
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
트리거가 반복되고 있습니다.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
반복 간격일
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
n일마다 트리거를 반복합니다.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
아래에 지정된 모든 필터와 일치하는 문서에 대해 트리거합니다.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
파일 이름 필터
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 *invoice*와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
출처 필터
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
필터 경로
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
이 경로와 일치하는 문서에 적용합니다. 와일드카드는 *로 지정할 수 있습니다. 대/소문자 정규화.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
필터 메일 규칙
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
이 메일 규칙을 통해 사용되는 문서에 적용합니다.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
콘텐츠 일치 알고리즘
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
콘텐츠 일치 패턴
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
동작 유형
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
제목 지정
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
일부 자리표시자를 포함할 수 있습니다. 자세한 내용은 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>문서</a>를 참조하세요.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
태그 할당
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
이 저장 경로를 할당합니다.
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
사용자 지정 필드 할당
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
소유자 할당
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
보기 권한 할당
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
편집 권한 할당
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
태그 제거
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
모두 제거
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
담당자 제거
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
모든 문서 유형 제거
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
모든 저장소 경로 제거
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
사용자 정의 필드 제거
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
소유자 제거
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
권한 제거
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
권한 보기
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
권한 수정
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
이메일 제목
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
이메일 본문
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
이메일 수신자
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
문서 첨부
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
웹훅 URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
웹훅 본문에 매개변수 사용
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
웹훅 페이로드를 JSON으로 보내기
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
웹훅 매개변수
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
웹훅 본문
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
웹훅 헤더
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
문서 포함
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
할당되지 않음
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
"" 필터 열기
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6222,7 +6162,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- 모든 페이지 선택
+ Select all pages
Deselect all pages
@@ -6230,7 +6170,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- 모든 페이지 선택 해제
+ Deselect all pages
Rotate selected pages counter-clockwise
@@ -6238,7 +6178,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- 선택한 페이지 반시계방향으로 회전
+ Rotate selected pages counter-clockwise
Rotate selected pages clockwise
@@ -6246,7 +6186,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- 선택한 페이지 시계방향으로 회전
+ Rotate selected pages clockwise
Delete selected pages
@@ -6254,7 +6194,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- 선택한 페이지 삭제
+ Delete selected pages
Rotate page counter-clockwise
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
프로필 업데이트 성공
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
프로필을 저장하는 중 오류가 발생하였습니다
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
인증 토큰을 생성하는 중 오류가 발생하였습니다
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
소셜 계정 연결 해제
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
TOTP 설정 가져오기 오류
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP가 성공적으로 활성화되었습니다.
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
TOTP 활성화 오류
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP가 성공적으로 비활성화되었습니다.
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
TOTP 비활성화 오류
@@ -6994,7 +6934,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
105
- 작업 대기열
+ Tasks Queue
Redis Status
@@ -7042,7 +6982,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
245
- 작업 실행
+ Run Task
Last Updated
@@ -7090,7 +7030,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- WebSocket 연결
+ WebSocket Connection
OK
@@ -7480,7 +7420,7 @@
src/app/components/document-detail/document-detail.component.html
58
- 인쇄
+ Print
More like this
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8036,7 +7976,7 @@
src/app/components/document-detail/document-detail.component.ts
1096
- 문서 다운로드 중 오류 발생
+ Error downloading document
Page Fit
@@ -8066,15 +8006,15 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
- 인쇄 실패.
+ Print failed.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
tiff를 로드하는 동안 오류가 발생했습니다:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
사용자 정의 필드
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
포함:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
보관된 파일
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
원본 파일
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
형식화된 파일명 사용
@@ -8730,14 +8670,6 @@
전체 선택
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
없음
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ 표시
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
제목 & 자료
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
파일 종류
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
더 비슷한
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
일치
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
는(은) 비어 있습니다.
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
가 비어 있지 않습니다.
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
보다 큰
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
미만
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
담당자 없음
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
문서 유형:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
문서 유형 없음
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
저장 경로 없음
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
어떤 태그도 없이
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
사용자 정의 필드 쿼리
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
제목:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
소유자:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
소유자가 다음에 없습니다:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
소유자 없음
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
권한 업데이트 중 오류 발생
@@ -9848,7 +9792,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- 받음
+ Received
Processed
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
권한을 성공적으로 업데이트하였습니다
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
이 작업은 모든 개체를 영구적으로 삭제합니다.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
개체가 성공적으로 삭제됨
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
개체 삭제 중 오류 발생
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index fedce8550..8b962f432 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zoumaachen
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Zréck
@@ -30,7 +30,7 @@
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
+ node_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
198
Weider
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Mount auswielen
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klicke fir unzeweisen.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Update disponibel
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Säiteleeschten-Usiichten aktualiséiert
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Wouer
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falsch
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Dokumenter sichen...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Bannent 1 Woch
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Bannent 1 Mount
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Bannent 3 Méint
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Bannent 1 Joer
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Dëst Joer
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Dëse Mount
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Grouss-/Klengschreiwung ignoréieren
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Net zougewisen
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Alles auswielen
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel an Inhalt
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Méi ähnleches
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
ass gläich
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
ass eidel
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
ass net eidel
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
ass méi grouss ewéi
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
ass méi kleng ewéi
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Ouni Korrespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Ouni Dokumententyp
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Ouni Etikett
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf
index 84d6b222e..9d7b51f60 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Uždaryti
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Ankstesnis
@@ -30,7 +30,7 @@
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
+ node_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
198
Kitas
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Pasirinktas mėnuo
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Click to view.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Update available
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Case insensitive
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Select all
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Without any tag
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf
index cfa24891d..52e9bec21 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Aizvērt
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Iepriekšējais
@@ -30,7 +30,7 @@
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
+ node_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
198
Nākamais
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Izvēlieties mēnesi
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Click to view.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Pieejams atjauninājums
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Case insensitive
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-pasts
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Dzēst birkas
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Dzēst visus
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Noņemt atļaujas
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Skatīt atļaujas
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Rediģēt atļaujas
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nav piešķirts
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profils tika sekmīgi atjaunināts
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Pielāgojami lauki
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Atzīmēt visu
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
ir tukšs
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
lielāks par
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
mazāk kā
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Bez birkas
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf
deleted file mode 100644
index b1da14d38..000000000
--- a/src-ui/src/locale/messages.mk_MK.xlf
+++ /dev/null
@@ -1,11480 +0,0 @@
-
-
-
-
-
- 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 049e8613f..a310705c4 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Close
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Previous
@@ -30,7 +30,7 @@
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
+ node_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
198
Next
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Select month
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Click to view.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
How does this work?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Update available
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Case insensitive
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edit user account
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Not assigned
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Select all
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Title & content
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
More like
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Without any tag
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 4dd03c98d..b25a81921 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Sluiten
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Vorige
@@ -30,7 +30,7 @@
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
+ node_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
198
Volgende
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Selecteer maand
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klik om te bekijken.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx kan automatisch controleren op updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Hoe werkt dit?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Update beschikbaar
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Zijbalkweergaven bijgewerkt
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Fout tijdens bijwerken van zijbalkweergaven
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Waar
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Onwaar
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Zoek documenten...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Niet
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Zoekopdracht toevoegen
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Expressie toevoegen
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Binnen 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Binnen 1 maand
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Binnen 3 maanden
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Binnen 1 jaar
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Dit jaar
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Deze maand
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Niet hoofdlettergevoelig
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Documenttype toewijzen
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Correspondent toewijzen
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mailadres
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Nieuw gebruikersaccount maken
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Bewerk gebruikersaccount
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP uitgeschakeld
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Fout bij uitschakelen TOTP
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relatief aan
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Aangepast veld
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Herhalend
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Herhalingsinterval in dagen
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger voor documenten die overeenkomen met alle filters hieronder.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Bestandsnaam filteren
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Toepassen op documenten die overeenkomen met deze bestandsnaam. Wildcards als *.pdf of *factuur* zijn toegestaan. Niet hoofdlettergevoelig.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Bronnen filteren
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter op opslaglocatie
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Hoofdletters worden genormaliseerd.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter op e-mailregel
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Toepassen op documenten die via deze e-mailregel zijn toegevoegd.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Inhoud matchingsalgoritme
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Inhoud matchen op patroon
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Actietype
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Titel toewijzen
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Kan gebruik maken van sommige placeholders, zie <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentatie</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Labels toewijzen
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Opslaglocatie toewijzen
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Aangepaste velden toewijzen
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Eigenaar toewijzen
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Weergaverechten toewijzen
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Bewerkingsrechten toewijzen
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Verwijder labels
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Verwijder alle
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Verwijder correspondenten
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Verwijder documenttypes
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Verwijder opslagpaden
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Verwijder aangepaste velden
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Verwijder eigenaars
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Verwijder rechten
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Bekijk rechten
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Bewerk rechten
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
E-mail onderwerp
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
E-mail tekst
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
E-mail ontvangers
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Voeg document toe
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Gebruik parameters voor de webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Verzend webhook payload als JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook parameters
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Zonder toewijzing
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profiel succesvol bijgewerkt
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Fout bij opslaan profiel
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Fout bij genereren authenticatie token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Fout bij ontkoppelen van sociaal account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Fout bij ophalen TOTP instellingen
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP succesvol ingeschakeld
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Fout bij inschakelen TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP is succesvol uitgeschakeld
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Fout bij uitschakelen TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Printen mislukt.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Fout bij laden van document voor printen.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Fout bij het laden van tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Aangepaste velden
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Inclusief:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Gearchiveerde bestanden
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Originele bestanden
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Gebruik geformatteerde bestandsnaam
@@ -8729,14 +8669,6 @@
Alles selecteren
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8753,6 +8685,18 @@
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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel en inhoud
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Bestandstype
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Meer zoals
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
gelijk aan
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is leeg
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is niet leeg
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
groter dan
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
kleiner dan
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Zonder correspondent
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Zonder documenttype
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Zonder opslagpad
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Label:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Zonder label
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Aangepaste velden zoekopdracht
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Eigenaar:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Eigenaar niet in:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Zonder eigenaar
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Fout bij bijwerken rechten
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Rechten succesvol bijgewerkt
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Deze bewerking zal alle objecten permanent verwijderen.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objecten succesvol verwijderd
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Fout bij verwijderen object
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 1670b9575..4b9c17651 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Lukk
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Forrige
@@ -30,7 +30,7 @@
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
+ node_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
198
Neste
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Velg en måned
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klikk for å se.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx kan automatisk sjekke etter oppdateringer
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Hvordan fungerer dette?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Oppdatering er tilgjengelig
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidepanel visning oppdatert
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Feil ved oppdatering av sidepanelet
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Det oppstod en feil under lagring av innstillinger for oppdatering.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Skill IKKE mellom store og små bokstaver
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Tilordne dokumenttype
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Tildel korrespondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-post
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Opprett ny brukerkonto
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Rediger brukerkonto
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Tildel lagringssti
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Tilordne eier
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Tilordne visningstillatelser
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Tilordne redigeringstillatelser
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Fjern etiketter
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Fjern alle
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Fjern korrespondenter
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Fjern dokumenttyper
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Fjern lagringsstier
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Fjern eiere
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Fjern tillatelser
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Vis rettigheter
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Endre rettigheter
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ikke tildelt
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Inkluder:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Velg alle
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Tittel & innhold
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Mer lik
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
er lik
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
er tom
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
er ikke tom
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
større enn
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
mindre enn
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Uten korrespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Uten dokumenttype
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Uten lagringssti
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Uten noen etiketter
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Tittel:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Eier:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Eier ikke i:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Uten en eier
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index fa73b00cf..8702a99d1 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zamknij
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Poprzedni
@@ -30,7 +30,7 @@
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
+ node_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
198
Następny
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts
112
Następny miesiąc
@@ -62,15 +62,15 @@
HH
- node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
- GG
+ 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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Wybierz miesiąc
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Kliknij, aby zobaczyć.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Jak to działa?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Aktualizacja jest dostępna
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Zaktualizowano widoki bocznego panelu
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Błąd podczas aktualizacji widoków bocznego panelu
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Prawda
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Fałsz
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Wyszukaj dokumenty...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Nie
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Dodaj zapytanie
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Dodaj wyrażenie
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
W ciągu 1 tygodnia
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
W ciągu 1 miesiąca
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
W ciągu 3 miesięcy
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
W ciągu 1 roku
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
W tym roku
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
W tym miesiącu
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
(Nieuwzględniający wielkości liter)
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Przypisz typ dokumentu
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Przypisz korespondenta
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4852,7 +4792,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Nadrzędny/a
+ Parent
Inbox tag
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Adres e-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Utwórz nowe konto użytkownika
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Edytuj konto użytkownika
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp wyłączony
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Dezaktywacja totp nie powiodła się
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Typ wyzwalacza
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Ustaw offset zaplanowanego wyzwalacza i pole daty do użycia.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Liczba dni przesunięcia
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Dodatnie wartości spowodują działanie po dacie, a ujemne – przed nią.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Względem
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Pole niestandardowe
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Pole niestandardowe używane dla daty.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Cykliczne
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Wyzwalacz jest cykliczny.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Odstęp w dniach
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Powtarzaj wyzwalacz co n dni.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Wyzwalacze do dokumentów, które pasują do wszystkich filtrów określonych poniżej.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtruj po nazwie pliku
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Zastosuj do dokumentów, które pasują do tej nazwy pliku. Maski takie jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie ma znaczenia.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtruj źródła
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtruj ścieżkę
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Zastosuj do dokumentów pasujących do tej ścieżki. Dozwolone są symbole wieloznaczne takie jak *. Wielkość liter nie ma znaczenia.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Reguła filtrowania wiadomości e-mail
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Zastosuj do dokumentów pobieranych za pomocą tej reguły mailowej.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algorytm dopasowania zawartości
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Wzór dopasowania zawartości
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Filtry zaawansowane
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Dodaj filtr
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Nie zdefiniowano zaawansowanych filtrów przepływu pracy.
+ 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
+ 222,224
- Zakończ konfigurację pola niestandardowego.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Typ akcji
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Przypisz tytuł
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Może zawierać różna zmienne, zobacz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentację</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Przypisz tagi
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Przypisz ścieżkę zapisu
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Przypisz pola dodatkowe
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Przypisz właściciela
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Przypisz uprawnienia do przeglądania
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Przypisz uprawnienia do edycji
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Usuń tagi
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Usuń wszystko
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Usuń korespondentów
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Usuń typy dokumentów
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Usuń ścieżki zapisu
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Usuń pole niestandardowe
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Usuń właścicieli
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Usuń uprawnienia
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Uprawnienia do przeglądania
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Uprawnienia do edycji
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Temat e-maila
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Treść e-maila
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Odbiorcy e-maila
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Dołącz dokument
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Adres URL webhooka
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Użyj parametrów dla treści webhooka
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Wyślij ładunek webhooka jako JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parametry webhooka
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Treść webhooka
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Nagłówki webhooka
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Dołącz dokument
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Zawiera którykolwiek z podanych tagów
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Zawiera wszystkie podane tagi
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Nie zawiera żadnego z podanych tagów
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Nie posiada korespondentów
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Nie posiada typów dokumentów
+ Does not have document types
Has storage path
@@ -5736,7 +5676,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Ma ścieżkę zapisu w
+ Has storage path
Does not have storage paths
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Brak ścieżki zapisu w
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Pasuje do zapytania o pole niestandardowe
+ Matches custom field query
Create new workflow
@@ -5776,7 +5716,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Dokument e-mailowy} other {Wyślij dokumentów e-mailowych}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5828,7 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Niektóre serwery poczty elektronicznej mogą odrzucać wiadomości z dużymi załącznikami.
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5844,7 +5784,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Błąd podczas wysyłania dokumentów
+ Error emailing documents
Error emailing document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nieprzypisane
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Otwórz filtr
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6222,7 +6162,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
9
- Zaznacz wszystkie strony
+ Select all pages
Deselect all pages
@@ -6230,7 +6170,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
12
- Odznacz wszystkie strony
+ Deselect all pages
Rotate selected pages counter-clockwise
@@ -6238,7 +6178,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
17
- Obróć wybrane strony przeciwnie do ruchu wskazówek zegara
+ Rotate selected pages counter-clockwise
Rotate selected pages clockwise
@@ -6246,7 +6186,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
20
- Obróć wybrane strony zgodnie z ruchem wskazówek zegara
+ Rotate selected pages clockwise
Delete selected pages
@@ -6254,7 +6194,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
23
- Usuń wybrane strony
+ Delete selected pages
Rotate page counter-clockwise
@@ -6262,7 +6202,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
33
- Obróć stronę przeciwnie do ruchu wskazówek zegara
+ Rotate page counter-clockwise
Rotate page clockwise
@@ -6270,7 +6210,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
36
- Obróć stronę zgodnie z ruchem wskazówek zegara
+ Rotate page clockwise
Delete page
@@ -6278,7 +6218,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
41
- Usuń stronę
+ Delete page
Add / remove document split here
@@ -6286,7 +6226,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Dodaj / usuń podział dokumentu
+ Add / remove document split here
Split here
@@ -6294,7 +6234,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
70
- Podziel tutaj
+ Split here
Create new document(s)
@@ -6302,7 +6242,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
82
- Utwórz nowy dokument(y)
+ Create new document(s)
Update existing document
@@ -6310,7 +6250,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
87
- Zaktualizuj istniejący dokument
+ Update existing document
Copy metadata
@@ -6318,7 +6258,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Skopiuj metadane
+ Copy metadata
Delete original
@@ -6326,7 +6266,7 @@
src/app/components/common/pdf-editor/pdf-editor.component.html
98
- Usuń oryginał
+ Delete original
Merge with existing permissions
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil został pomyślnie zaktualizowany
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Błąd podczas zapisywania profilu
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Błąd generowania tokenu autoryzacyjnego
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Błąd rozłączania konta społecznościowego
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Błąd pobierania ustawień TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP aktywowany pomyślnie
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Błąd aktywacji TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP dezaktywowany pomyślnie
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Błąd dezaktywacji TOTP
@@ -7090,7 +7030,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- Połączenie WebSocket
+ WebSocket Connection
OK
@@ -7098,7 +7038,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- OK
+ OK
Copy Raw Error
@@ -7436,7 +7376,7 @@
src/app/components/document-detail/document-detail.component.html
7,8
- z
+ of
-
@@ -7480,7 +7420,7 @@
src/app/components/document-detail/document-detail.component.html
58
- Drukuj
+ Print
More like this
@@ -7504,7 +7444,7 @@
src/app/components/document-detail/document-detail.component.ts
1392
- Edytor dokumentu PDF
+ PDF Editor
Send
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8052,7 +7992,7 @@
src/app/components/document-detail/document-detail.component.ts
1411
- Edycja dokumentu PDF dla "" rozpocznie się w tle.
+ PDF edit operation for "" will begin in the background.
Error executing PDF edit operation
@@ -8060,33 +8000,33 @@
src/app/components/document-detail/document-detail.component.ts
1423
- Błąd podczas edycji dokumentu PDF
+ Error executing PDF edit operation
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
- Błąd drukowania.
+ Print failed.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
- Błąd ładowania dokumentu do wydruku.
+ Error loading document for printing.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Wystąpił błąd podczas ładowania pliku TIFF:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Pola dodatkowe
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Zawrzyj:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Zarchiwizowane pliki
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Oryginalne pliki
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Użyj sformatowanej nazwy pliku
@@ -8729,14 +8669,6 @@
Zaznacz wszystko
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Wybierz:
-
None
@@ -8753,6 +8685,18 @@
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
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Tytuł & treść
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Typ pliku
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Podobne do
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
równa się
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
jest pusty
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
nie jest pusty
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
większy niż
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
mniejsze niż
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Korespondent:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Bez nadawcy
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Typ dokumentu:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Bez typu dokumentu
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Ścieżka przechowywania:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Bez ścieżki zapisu
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Bez żadnego tagu
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Zapytanie o pola dodatkowe
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Tytuł:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
Numer archiwum:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Właściciel:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Właściciel nie w:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Bez właściciela
@@ -9627,7 +9571,7 @@
src/app/components/manage/mail/mail.component.html
143
- Zobacz Przetworzoną pocztę
+ View Processed Mail
No mail rules defined.
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Błąd aktualizacji uprawnień
@@ -9831,7 +9775,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- Przetworzona poczta dla
+ Processed Mail for
No processed email messages found.
@@ -9839,7 +9783,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- Nie znaleziono przetworzonych wiadomości.
+ No processed email messages found.
Received
@@ -9847,7 +9791,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Odebrano
+ Received
Processed
@@ -9855,7 +9799,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Przetworzono
+ Processed
Processed mail(s) deleted
@@ -9863,7 +9807,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Usunięto przetworzone wiadomości
+ Processed mail(s) deleted
Filter by:
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Uprawnienia zostały pomyślnie zaktualizowane
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Ta operacja spowoduje trwałe usunięcie wszystkich obiektów.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Obiekty usunięte pomyślnie
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Błąd usuwania obiektów
@@ -10435,7 +10379,7 @@
src/app/data/custom-field.ts
55
- Pełny tekst
+ Long Text
Search score
@@ -11260,7 +11204,7 @@
src/app/services/settings.service.ts
249
- Wietnamski
+ Vietnamese
Chinese Simplified
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 3a183e5e9..60e125124 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Fechar
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Anterior
@@ -30,7 +30,7 @@
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
+ node_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
198
Próximo
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Selecione o mês
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Clique para visualizar.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx pode verificar atualizações automaticamente
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Como isto funciona?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Atualização disponível
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Visualizações da barra lateral atualizadas
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Erro ao atualizar visualizações da barra lateral
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Ocorreu um erro ao salvar as verificações de atualizações.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Verdadeiro
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falso
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Procura documentos...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Não
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Adicionar consulta
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Adicionar expressão
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Em 1 semana
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Em 1 mês
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Em 3 meses
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Em 1 ano
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Este ano
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Este mês
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Não diferenciar maiúsculas de minúsculas
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Atribuir tipo de documento
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Atribuir correspondente
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Criar uma nova conta de usuário
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Editar conta de usuário
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp desativado
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Desativação de totp falhou
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tipo de acionador
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Define o deslocamento do gatilho programado e o campo a ser usado.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Dias de deslocamento
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Valores positivos serão acionados após a data, valores negativos antes.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relativo a
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizado
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Campo personalizado para usar para data.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recorrente
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Gatilho é recorrente.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Dias do intervalo recorrentes
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repetir o gatilho a cada n dias.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Acionar os documentos que correspondem a todos os filtros especificados abaixo.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtro de nome de arquivo
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Aplica-se a documentos que correspondem a esse nome de arquivo. Caracteres curinga como *.pdf ou *fatura* são permitidos. Sem diferenciação de maiúsculas e minúsculas.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtro de fontes
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtro de caminho
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filtro de regra de e-mail
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Aplica-se a documentos consumidos por essa regra de e-mail.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritmo de conteúdo correspondente
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Conteúdo correspondente padrão
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Filtros Avançados
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Adicionar filtro
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Nenhum filtro avançado de fluxo de trabalho definido.
+ 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
+ 222,224
- Conclua a configuração da consulta de campo personalizado.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tipo de ação
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Atribuir título
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Pode incluir alguns espaços reservados, consulte a <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentação</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Atribuir etiquetas
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Atribuir caminho de armazenamento
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Atribuir campos personalizados
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Atribuir proprietário
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Atribuir permissões de visualização
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Atribuir permissões de edição
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remover etiquetas
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remover tudo
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remover correspondentes
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remover tipos de documentos
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remover caminhos de armazenamento
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remover campos personalizados
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remover proprietários
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remover permissões
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Exibir Permissões
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Editar permissões
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Assunto do email
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Corpo do e-mail
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Destinatários de e-mail
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Anexar documento
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Url do webhook
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Usar parâmetros para o corpo do webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Enviar payload do webhook como JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parâmetros do webhook
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Corpo do webhook
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Cabeçalhos de webhook
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Incluir documentos
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Possui alguma destas etiquetas
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Possui estas etiquetas
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Não possui estas etiquetas
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Não possui correspondentes
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Não possui tipos de documento
+ Does not have document types
Has storage path
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Não possui caminhos de armazenamento
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Corresponde à consulta de campo personalizado
+ Matches custom field query
Create new workflow
@@ -5776,7 +5716,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {Enviar documento por e-mail} other {Email Documentos}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5828,8 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Alguns servidores de e-mail podem rejeitar mensagens com anexos grandes.
-Erro ao enviar documentos por e-mail
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5845,7 +5784,7 @@ Erro ao enviar documentos por e-mail
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Erro ao enviar documentos por e-mail
+ Error emailing documents
Error emailing document
@@ -5919,7 +5858,7 @@ Erro ao enviar documentos por e-mail
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Não atribuído
@@ -5928,7 +5867,7 @@ Erro ao enviar documentos por e-mail
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Abrir filtro
@@ -6008,7 +5947,7 @@ Erro ao enviar documentos por e-mail
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6145,11 +6084,11 @@ Erro ao enviar documentos por e-mail
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6681,7 +6620,7 @@ Erro ao enviar documentos por e-mail
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Perfil atualizado com sucesso
@@ -6689,7 +6628,7 @@ Erro ao enviar documentos por e-mail
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Erro ao salvar o perfil
@@ -6697,7 +6636,7 @@ Erro ao enviar documentos por e-mail
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Erro ao gerar token de autenticação
@@ -6705,7 +6644,7 @@ Erro ao enviar documentos por e-mail
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Erro ao desconectar conta de rede social
@@ -6713,7 +6652,7 @@ Erro ao enviar documentos por e-mail
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Erro ao obter configurações TOTP
@@ -6721,7 +6660,7 @@ Erro ao enviar documentos por e-mail
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP ativado com sucesso
@@ -6729,11 +6668,11 @@ Erro ao enviar documentos por e-mail
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Erro ao ativar TOTP
@@ -6741,7 +6680,7 @@ Erro ao enviar documentos por e-mail
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP desativado com sucesso
@@ -6749,11 +6688,11 @@ Erro ao enviar documentos por e-mail
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Erro ao desativar TOTP
@@ -7543,7 +7482,7 @@ Erro ao enviar documentos por e-mail
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8067,7 +8006,7 @@ Erro ao enviar documentos por e-mail
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Impressão falhou.
@@ -8075,7 +8014,7 @@ Erro ao enviar documentos por e-mail
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Erro ao carregar o documento para impressão.
@@ -8083,11 +8022,11 @@ Erro ao enviar documentos por e-mail
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Ocorreu um erro ao carregar tiff:
@@ -8167,7 +8106,7 @@ Erro ao enviar documentos por e-mail
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Campos personalizados
@@ -8207,7 +8146,7 @@ Erro ao enviar documentos por e-mail
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Incluir:
@@ -8215,7 +8154,7 @@ Erro ao enviar documentos por e-mail
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Arquivos arquivados
@@ -8223,7 +8162,7 @@ Erro ao enviar documentos por e-mail
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Arquivos originais
@@ -8231,7 +8170,7 @@ Erro ao enviar documentos por e-mail
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Usar nome do arquivo formatado
@@ -8731,14 +8670,6 @@ Erro ao enviar documentos por e-mail
Selecionar todos
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8755,6 +8686,18 @@ Erro ao enviar documentos por e-mail
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
@@ -8855,7 +8798,7 @@ Erro ao enviar documentos por e-mail
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9075,7 +9018,7 @@ Erro ao enviar documentos por e-mail
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Título & conteúdo
@@ -9083,7 +9026,7 @@ Erro ao enviar documentos por e-mail
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Tipo de arquivo
@@ -9091,7 +9034,7 @@ Erro ao enviar documentos por e-mail
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Mais parecido
@@ -9099,7 +9042,7 @@ Erro ao enviar documentos por e-mail
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
igual a
@@ -9107,7 +9050,7 @@ Erro ao enviar documentos por e-mail
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
está vazio
@@ -9115,7 +9058,7 @@ Erro ao enviar documentos por e-mail
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
não está vazio
@@ -9123,7 +9066,7 @@ Erro ao enviar documentos por e-mail
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
maior que
@@ -9131,7 +9074,7 @@ Erro ao enviar documentos por e-mail
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
menor que
@@ -9139,7 +9082,7 @@ Erro ao enviar documentos por e-mail
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondente:
@@ -9147,7 +9090,7 @@ Erro ao enviar documentos por e-mail
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sem correspondente
@@ -9155,7 +9098,7 @@ Erro ao enviar documentos por e-mail
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Tipo de documento:
@@ -9163,7 +9106,7 @@ Erro ao enviar documentos por e-mail
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sem tipo de documento
@@ -9171,7 +9114,7 @@ Erro ao enviar documentos por e-mail
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Caminho de armazenamento:
@@ -9179,7 +9122,7 @@ Erro ao enviar documentos por e-mail
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Sem o caminho de armazenamento
@@ -9187,7 +9130,7 @@ Erro ao enviar documentos por e-mail
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9195,7 +9138,7 @@ Erro ao enviar documentos por e-mail
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sem etiquetas
@@ -9203,7 +9146,7 @@ Erro ao enviar documentos por e-mail
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Consulta de campos personalizados
@@ -9211,7 +9154,7 @@ Erro ao enviar documentos por e-mail
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Título:
@@ -9219,7 +9162,7 @@ Erro ao enviar documentos por e-mail
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
NSA:
@@ -9227,7 +9170,7 @@ Erro ao enviar documentos por e-mail
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Proprietário:
@@ -9235,7 +9178,7 @@ Erro ao enviar documentos por e-mail
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
@@ -9243,7 +9186,7 @@ Erro ao enviar documentos por e-mail
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Sem um proprietário
@@ -9629,7 +9572,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/mail.component.html
143
- Ver e-mails processados
+ View Processed Mail
No mail rules defined.
@@ -9823,7 +9766,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
@@ -9833,7 +9776,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- E-mails processados para
+ Processed Mail for
No processed email messages found.
@@ -9841,7 +9784,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- Nenhuma mensagem de e-mail processada encontrada.
+ No processed email messages found.
Received
@@ -9849,7 +9792,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Recebido
+ Received
Processed
@@ -9857,7 +9800,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- Processado
+ Processed
Processed mail(s) deleted
@@ -9865,7 +9808,7 @@ Erro ao enviar documentos por e-mail
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- E-mail(s) processado(s) excluído(s)
+ Processed mail(s) deleted
Filter by:
@@ -10011,7 +9954,7 @@ Erro ao enviar documentos por e-mail
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissões atualizadas com sucesso
@@ -10019,7 +9962,7 @@ Erro ao enviar documentos por e-mail
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Esta operação irá apagar permanentemente todos os objetos.
@@ -10027,7 +9970,7 @@ Erro ao enviar documentos por e-mail
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objeto(s) excluído(s) com sucesso.
@@ -10035,7 +9978,7 @@ Erro ao enviar documentos por e-mail
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Erro ao apagar objetos
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 2007ea9b3..219e2f1be 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Fechar
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Anterior
@@ -30,7 +30,7 @@
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
+ node_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
198
Seguinte
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Selecionar mês
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Clique para ver.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
O Paperless-ngx pode verificar automaticamente por atualizações
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Como é que isto funciona?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Atualização disponível
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Visualizações da barra lateral atualizadas
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Erro ao atualizar visualizações da barra lateral
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Verdadeiro
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falso
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Não
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Adicionar expressão
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Dentro de 1 semana
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Dentro de 1 mês
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Dentro de 3 meses
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Dentro de 1 ano
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Este ano
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Este mês
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Não distinguir entre maiúsculas e minúsculas
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Definir ao tipo de documento através de
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Definir correspondente
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Criar nova conta de utilizador
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Editar conta de utilizador
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp desativado
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Dias de desfasamento
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Valores positivos serão acionados após a data, valores negativos antes da data.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Atribuir título
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Atribuir etiquetas
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Atribuir responsável
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Não atribuído
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Incluir:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Selecionar todos
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Título & conteúdo
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Semelhantes a
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
é igual a
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
está vazio
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
não está vazio
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
é maior que
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
é menor que
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Sem correspondente
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Sem tipo de documento
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Sem caminho de armazenamento
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Sem etiquetas
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Título:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
NSA:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Dono:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Erro ao atualizar permissões
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 3b5f99bd6..0499ca68f 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Închide
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Anterior
@@ -30,7 +30,7 @@
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
+ node_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
198
Următor
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Selectați luna
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Click pentru a vizualiza.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Sistemul poate verifica automat actualizările
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Cum funcţionează?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Actualizare disponibilă
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Vizualizări bară laterală actualizate
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Eroare la actualizarea vizualizărilor barei laterale
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Ignoră majusculele
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Assign document type
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Assign correspondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Poștă electronică
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Crează un nou cont de utilizator
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Editează contul de utilizator
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtru nume fișier
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Aplică la documentele care se potrivesc cu acest nume de fișier. Wildcards cum ar fi *.pdf sau *factura* sunt permise. Masca insensibilă.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtrare surse
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtrare cale
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Regulă filtrare e-mail
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Aplică la documentele consumate prin această regulă de e-mail.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nealocate
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Include:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Selectează tot
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titlu si conținut
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Asemănătoare
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
equals
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
is empty
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
is not empty
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
greater than
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
less than
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Fără corespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Fară tip
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Without storage path
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Fară etichete
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titlu:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
Aviz prealabil de expediție:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Without an owner
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index 76e56345f..c5d1a3ebf 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Закрыть
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Предыдущий
@@ -30,7 +30,7 @@
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
+ node_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
198
Следующий
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Выберите месяц
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Нажмите для просмотра.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx может автоматически проверять наличие обновлений
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Как это работает?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Доступно обновление
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Обновлена боковая панель
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Ошибка при обновлении боковой панели
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Произошла ошибка при сохранении настроек проверки обновлений.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Верно
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Ложное
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Поиск документов...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Не
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Добавить запрос
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Добавить выражение
@@ -3830,6 +3798,18 @@
Относительные даты
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ сейчас
+
From
@@ -3878,19 +3858,11 @@
Добавлено
-
- 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
- 81
+ 76
В течение 1 недели
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
В течение 1 месяца
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
В течении 3-х месяцев
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
В течение 1 года
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
В этом году
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
В этом месяце
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
Вчера
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Без учёта регистра
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Назначить тип документа
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Назначить корреспондента
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Электронная почта
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Создать новую учетную запись пользователя
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Редактировать учетную запись пользователя
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp деактивирован
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Ошибка деактивации Totp
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Тип триггера
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Задайте смещение запланированного триггера и какое поле даты использовать.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Дни смещения
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Положительные значения будут срабатывать после даты, а отрицательные - перед ней.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Относительно
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Пользовательское поле
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Пользовательское поле, чтобы использовать для даты.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Повторяющееся
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Триггер повторяется.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Повторяющиеся дни интервала
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Повторять триггер каждые n дней.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Триггер для документов, соответствующих всем фильтрам указанным ниже.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Фильтр имя файла
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Обрабатывать только документы, которые полностью совпадают с именем файла. Маски, например *.pdf или *счет*, разрешены. Не учитывает регистр.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Фильтр источников
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Фильтр пути
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Обрабатывать только документы, которые соответствуют данному пути. Маски, указанные как *, разрешены. Допускается регистр.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Фильтр почтовых правил
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Обрабатывать только документы, добавленные через это почтовое правило.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Алгоритм подбора содержимого
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Шаблон подбора содержимого
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Тип действия
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Присвоить заголовок
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Может содержать некоторые заполнители, смотрите <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацию</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Назначить метки
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Назначить путь хранения
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Назначить пользовательские поля
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Назначить владельца
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Назначить права для просмотра
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Назначить права для редактирования
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Удалить теги
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Удалить всё
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Удалить корреспондентов
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Удалить типы документов
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Удалить пути хранения
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Удалить пользовательские поля
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Удалить владельцев
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Удалить разрешения
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Просмотр разрешений
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Изменить разрешения
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Тема письма
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Текст письма
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Получатели письма
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Прикрепить документ
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL вебхука
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Использовать параметры для тела веб-хука
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Отправить webhook загрузку как JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Параметры вебхука
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Тело веб хука
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
HTTP-заголовки вебхука
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Включать документ
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не назначено
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Открыть фильтр
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Профиль успешно обновлен
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Ошибка при сохранении профиля
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Ошибка создания токена авторизации
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Ошибка при отключении стороннего сервиса
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Ошибка получения настроек TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP успешно активирован
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Ошибка активации TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP успешно деактивирован
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Ошибка деактивации TOTP
@@ -7090,7 +7030,7 @@
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- Подключение WebSocket
+ WebSocket Connection
OK
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Произошла ошибка при загрузке tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Пользовательские поля
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Включить:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Архивные файлы
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Исходные файлы
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Использовать форматированное имя файла
@@ -8729,14 +8669,6 @@
Выбрать всё
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8753,6 +8685,18 @@
Отсутствует
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Показать
+
Sort
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Название и содержимое
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Тип файла
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Больше похожих
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
совпадает с
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
не заполнено
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
не является пустым
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
больше чем
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
меньше чем
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Корреспондент:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Без корреспондента
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Тип документа:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Без типа документа
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Путь хранения:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Без пути хранения
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Тег:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Без тегов
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Запрос пользовательских полей
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Название:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
Архивный номер:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Владелец:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Владелец не в:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Без владельца
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Ошибка обновления прав доступа
@@ -9863,7 +9807,7 @@
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- Обработанная почта удалена
+ Processed mail(s) deleted
Filter by:
@@ -10009,7 +9953,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Права доступа успешно обновлены
@@ -10017,7 +9961,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Эта операция окончательно удалит все объекты.
@@ -10025,7 +9969,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Объекты успешно удалены
@@ -10033,7 +9977,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Ошибка при удалении объектов
diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf
index b7f2f64ad..55183960e 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zavrieť
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Predchádzajúci
@@ -30,7 +30,7 @@
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
+ node_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
198
Ďalší
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Vyberte mesiac
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klikni pre zobrazenie.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx môže automaticky kontrolovať aktualizácie
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Ako to funguje?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Aktualizácia je k dispozícii
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Nerozlišuje veľké a malé písmená
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Priradiť typ dokumentu
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Priradiť odosielateľa
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-mail
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Vytvoriť nový účet používateľa
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Upraviť účet používateľa
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Odstrániť typy dokumentov
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Odstrániť cesty k úložisku
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nepriradené
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Zahrnúť:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Vybrať všetko
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
Ž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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Názov & obsah
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Podobné
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
rovná sa
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
je prázdny
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
nie je prázdny
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
väčšie ako
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
menšie ako
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Nepriradené
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Nepriradené
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Nepriradené
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Nepriradené
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Názov:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Vlastník:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Vlastník nie je:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Bez vlastníka
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index 2fa2371c5..60b0f1118 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zapri
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Prejšnji
@@ -30,7 +30,7 @@
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
+ node_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
198
Naslednji
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Izberi mesec
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klikni za ogled.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx lahko samodejno preveri za posodobitve
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Kako to deluje?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Posodobitev na voljo
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Posodobljeni pogledi v stranski vrstici
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Napaka pri posodabljanju pogledov v stranski vrstici
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Resnično
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Neresnično
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Išči dokumente ...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Ne
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Dodaj poizvedbo
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Dodaj izraz
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
V 1 tednu
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
V 1 mesecu
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
V 3 mesecih
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
V 1 letu
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
To leto
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Ta mesec
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Brez razlikovanje velikosti črk
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Dodeli vrsto dokumenta
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Dodeli dopisnika
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-pošta
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Ustvari nov uporabniški račun
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Uredi uporabniški račun
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Topp deaktiviran
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Deaktivacija Totp ni uspela
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Vrstra sprožilca
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Nastavite načrtovani odmik sprožilca in katero datumsko polje želite uporabiti.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Izravnalni dnevi
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Pozitivne vrednosti se bodo sprožile po datumu, negativne vrednosti pa pred njim.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Glede na
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Polje po meri
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Polje po meri za uporabo za datum.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Ponavljajoče se
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Sprožilec se ponavlja.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ponavljajoči se intervalni dnevi
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Sprožilec ponovite vsakih n dni.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Sprožilec za dokumente, ki ustrezajo vsem spodnjim kriterijem.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtriraj imena datotek
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Uporabi za dokumente, ki ustrezajo temu imenu datoteke. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljivo na velikost črk.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtriraj vire
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtriraj pot
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Uporabi za dokumente, ki ustrezajo tej poti. Možna uporaba * nadomestnega znaka. Normalizirano glede na velike in male črke.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filtriraj e-poštna pravila
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Uporabi za dokumente, zajete prek tega e-poštnega pravila.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritem za ujemanje vsebine
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Vzorec za ujemanje vsebine
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Napredni filtri
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Dodaj filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
Ni definiranih naprednih filtrov poteka dela.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Dokončajte konfiguracijo poizvedbe po polju po meri
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tip akcije
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Dodeli naslov
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Lahko vključuje nekaj vzorčnih vrednosti, preverite <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentacijo</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Dodeli oznake
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Dodeli pot shrambe
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Dodeli polja po meri
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Določi lastnika
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Dodeli dovoljenje za vpoglede
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Dodeli dovoljenje za urejanje
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Odstrani oznake
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Odstrani vse
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Odstrani dopisnike
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Odstrani vrste dokumentov
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Odstrani poti do shrambe
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Odstrani polja po meri
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Odstrani lastnike
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Odstrani dovoljenja
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Ogled dovoljenj
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Uredi dovoljenja
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Zadeva e-pošte
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Telo e-pošte
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Prejemniki e-pošte
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Priloži dokument
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL spletnega kavlja
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Uporabite parametre za telo spletnega kavlja
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Pošlji koristni delež spletnega kavlja kot JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parametri spletnega kavlja
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Telo spletnega kavlja
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Glave spletnega kavlja
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Vključi dokument
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Ni dodeljeno
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Odpri filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil uspešno posodobljen
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Napaka pri shranjevanju profila
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Napaka pri generiranju avtorizacijskega žetona
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Napaka pri odstranjevanju računa družabnega omrežja
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Napaka pri pridobivanju nastavitev TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP je bil uspešno aktiviran
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Napaka pri aktiviranju TOTP-ja
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP je bil uspešno deaktiviran
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Napaka pri deaktiviranju TOTP-ja
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Tiskanje ni uspelo.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Napaka pri nalaganju dokumenta za tiskanje.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Pri nalaganju datoteke tiff je prišlo do napake:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Polja po meri
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Vključi:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Arhivirane datoteke
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Izvirne datoteke
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Uporaba formatiranega imena datoteke
@@ -8730,14 +8670,6 @@
Izberite vse
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Izberite:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Naslov & vsebina
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Vrsta datoteke
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Bolj podobno
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
je enako
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
je prazno
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
ni prazno
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
večje kot
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
manj kot
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Dopisnik:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Brez dopisnika
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Vrsta dokumenta:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Brez vrste dokumenta
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Pot shranjevanja:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Brez poti shrambe
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Oznaka:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Brez kakršne koli oznake
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Poizvedba po poljih po meri
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Naslov:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Lastnik:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Lastnika ni v:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Brez lastnika
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Napaka pri posodabljanju dovoljenj
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Dovoljenja so bila uspešno posodobljena
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
To dejanje bo dokončno izbrisalo vse elemente.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Elementi uspešno izbrisani
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Napaka pri brisanju elementov
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index 3404a03a4..d881c6f5e 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Zatvori
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Prethodni
@@ -30,7 +30,7 @@
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
+ node_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
198
Sledeći
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Odaberi mesec
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klik za prеglеd.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx može automatski da proveri da li postoje ažuriranja
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Kako ovo radi?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Dostupno jе ažuriranjе
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Prikazi bočne trake su ažurirani
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Greška pri ažuriranju prikaza bočne trake
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Došlo je do greške prilikom čuvanja podešavanja.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Tačno
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Netačno
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Pretraži dokumenta...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Nije
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Dodaj upit
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Dodaj izraz
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
U roku od 1 nedelje
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
U roku od mesec dana
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
U roku od tri meseca
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
U roku od godinu dana
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Ove godine
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Ovaj mesec
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Neosetljivo na mala i velika slova
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Dodeli tip dokumenta
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Dodeli korespondenta
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Imejl
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Kreirajte novi korisnički nalog
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Izmeni korisnički nalog
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp je deaktiviran
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Deaktivacija Totp-a neuspešna
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tip okidača
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Podesi zakazano odlaganje okidača i koje polje datuma koristiti.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Dani za pomeranje
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Pozitivne vrednosti će biti primenjene nakon datuma, a negativne vrednosti pre.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relativno u odnosu na
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Prilagođeno polje
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Prilagođeno polje za upotrebu datuma.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Ponavljajući
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Okidač je ponavljajući.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Interval ponavljanja u danima
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Ponavljajte okidač svakih n dana.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Pokreni za dokumenta koja se poklapaju sa svim filterima navedenim u nastavku.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filtriraj ime fajla
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Primeni na dokumente koji odgovaraju ovom imenu fajla. Dozvoljeni su specijalni znakovi kao što su *.pdf ili *faktura*. Neosetljivo na velika i mala slova.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filtriraj izvore
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtriraj putanju
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Primeni na dokumenta koja se poklapaju sa ovom putanjom. Specijalni znakovi * su dozvoljeni. Obrati pažnju na velika i mala slova.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filtriraj pravilo za imejl
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Primeni na dokumentima koji se obrađuju putem ovog pravila za imejl.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Algoritam za prepoznavanje sadržaja
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Obrazac za prepoznavanje sadržaja
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Napredni filteri
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Dodaj filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
Nisu definisani napredni filteri toka posla.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Dovršite konfiguraciju upita prilagođenog polja.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Tip radnje
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Dodeli naslov
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Može uključivati neke placeholders, pogledaj <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentaciju</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Dodeli oznake
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Dodeli putanju skladišta
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Dodeli dodatno polje
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Dodeli vlasnika
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Dodeli dozvolu za prikaz
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Dodeli dozvolu za izmenu
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Ukloni oznake
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Ukloni sve
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Ukloni korespondente
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Ukloni tipove dokumenta
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Ukloni putanju skladištenja
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Ukloni prilagođenja polja
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Ukloni vlasnike
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Ukloni dozvole
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Pregledaj dozvole
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Izmeni dozvole
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Naslov imejla
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Telo imejla
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Primaoca imejla
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Priloži dokument
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL webhook-a
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Koristi parametre za telo webhook-a
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Pošalji payload webhook-a kao JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Parametri webhook-a
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Telo webhook-a
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Zaglavlja webhook-a
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Uključi dokument
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Nije dodeljen
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Otvori filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil je uspešno ažuriran
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Greška prilikom čuvanja profila
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Greška prilikom generisanja auth tokena
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Greška prilikom isključivanja naloga
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Greška pri preuzimanju TOTP podešavanja
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP je uspešno aktiviran
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Greška pri aktiviranju TOTP-a
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP je uspešno deaktiviran
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Greška pri deaktiviranju TOTP-a
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Štampanje nije uspelo.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Greška pri učitavanju dokumenta za štampanje.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
Došlo je do greške prilikom učitavanja TIFF-a:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Dodatna polja
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Uključi:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Arhivski fajlovi
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Originalni fajlovi
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Koristi formatirani naziv fajla
@@ -8731,14 +8671,6 @@
Odaberi sve
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Odaberi:
-
None
@@ -8755,6 +8687,18 @@
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
@@ -8855,7 +8799,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9075,7 +9019,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Naslov i sadržaj
@@ -9083,7 +9027,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Vrsta fajla
@@ -9091,7 +9035,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Slično
@@ -9099,7 +9043,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
jednako
@@ -9107,7 +9051,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
je prazan
@@ -9115,7 +9059,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
nije prazan
@@ -9123,7 +9067,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
veće od
@@ -9131,7 +9075,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
manje od
@@ -9139,7 +9083,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Korespondent:
@@ -9147,7 +9091,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Bez korespondenta
@@ -9155,7 +9099,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Vrsta dokumenta:
@@ -9163,7 +9107,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Bez tipa dokumenta
@@ -9171,7 +9115,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Putanja skladišta:
@@ -9179,7 +9123,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Bez putanje skladišta
@@ -9187,7 +9131,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Oznaka:
@@ -9195,7 +9139,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Bez oznake
@@ -9203,7 +9147,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Upit za prilagođeno polje
@@ -9211,7 +9155,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Naslov:
@@ -9219,7 +9163,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9227,7 +9171,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Vlasnik:
@@ -9235,7 +9179,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Vlasnik nije:
@@ -9243,7 +9187,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Bez vlasnika
@@ -9823,7 +9767,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Greška prilikom izmene dozvola
@@ -10011,7 +9955,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Dozvole su uspešno ažurirane
@@ -10019,7 +9963,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Ova operacija će trajno obrisati sve objekte.
@@ -10027,7 +9971,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objekti su uspešno obrisani
@@ -10035,7 +9979,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Greška prilikom brisanja objekata
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 354d164ff..18df78b6d 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Stäng
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Föregående
@@ -30,7 +30,7 @@
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
+ node_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
198
Nästa
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Välj månad
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Klicka för att visa.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx kan automatiskt söka efter uppdateringar
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Hur fungerar detta?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Uppdatering tillgänglig
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Ett fel uppstod när uppdateringskontrollen skulle sparas.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Sant
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Falskt
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Ej
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Ej skiftlägeskänsligt
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Tilldela dokumenttyp
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Tilldela korrespondent
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-post
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Skapa nytt användarkonto
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Redigera användare
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Tilldela titel
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Tilldelar taggar
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Tilldela sökväg för lagring
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Tilldela anpassade fält
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Tilldela ägare
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Tilldela visningsrättigheter
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Tilldela redigeringsbehörigheter
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Ta bort taggar
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Ta bort allt
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Ta bort korrespondenter
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Ta bort dokumenttyper
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Ta bort lagringssökvägar
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Tilldela anpassade fält
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Ta bort ägare
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Ta bort behörigheter
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Visa behörigheter
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Redigera behörigheter
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Inte tilldelad
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Inkludera:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
Välj alla
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
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
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Titel & innehåll
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Mer som
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
är lika med
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
är tom
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
är inte tom
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
större än
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
mindre än
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Utan korrespondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Utan dokumenttyp
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Utan lagringsplats
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Utan tagg
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Titel:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Ägare:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Ägare ej i:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Utan ägare
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf
index c7c9f651c..5c4f1cbd9 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
ปิด
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
ก่อนหน้า
@@ -30,7 +30,7 @@
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
+ node_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
198
ถัดไป
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
เลือกเดือน
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
คลิกเพื่อดู
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx can automatically check for updates
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
ระบบนี้ทำงานยังไง?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
มีการอัพเดท
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Sidebar views updated
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Error updating sidebar views
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
An error occurred while saving update checking settings.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
True
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
False
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Search docs...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Not
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Add query
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Add expression
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
นำเข้า
-
- 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
- 81
+ 76
Within 1 week
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Within 1 month
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Within 3 months
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Within 1 year
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
This year
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
This month
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
กำหนดประเภทเอกสาร
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
กำหนดผู้เขียน
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
อีเมล
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Create new user account
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
แก้ไขบัญชีผู้ใช้งาน
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp deactivated
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Trigger type
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Relative to
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Custom field to use for date.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Recurring
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Trigger for documents that match all filters specified below.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Filter filename
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Filter sources
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filter path
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Filter mail rule
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Apply to documents consumed via this mail rule.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Content matching algorithm
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Content matching pattern
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Action type
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Assign title
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Assign tags
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Assign storage path
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Assign custom fields
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Assign owner
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Assign view permissions
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Assign edit permissions
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Remove tags
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Remove all
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Remove correspondents
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Remove document types
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Remove storage paths
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Remove custom fields
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Remove owners
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Remove permissions
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
View permissions
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Edit permissions
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Email subject
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Email body
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Email recipients
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Attach document
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Use parameters for webhook body
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook params
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook headers
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Include document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
ไม่กำหนด
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Open filter
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profile updated successfully
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Error saving profile
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Error generating auth token
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Error disconnecting social account
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Error fetching TOTP settings
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP activated successfully
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Error activating TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP deactivated successfully
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Error deactivating TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Custom fields
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
รวม:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Archived files
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Original files
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Use formatted filename
@@ -8730,14 +8670,6 @@
เลือกทั้งหมด
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
ไม่มี
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Show
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
ชื่อ & เนื้อหา
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
File type
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
อื่น ๆ ที่คล้ายกัน
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
เท่ากับ
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
ว่างเปล่า
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
ไม่ว่างเปล่า
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
มากกว่า
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
น้อยกว่า
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Without correspondent
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Without document type
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
ไม่มีพาธจัดเก็บ
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
ไม่มีแท็กใด ๆ
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Title:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Owner:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Owner not in:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
ไม่มีเจ้าของ
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Error updating permissions
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Permissions updated successfully
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
This operation will permanently delete all objects.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Objects deleted successfully
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Error deleting objects
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 189e8ac94..97cee5d52 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Kapat
@@ -13,16 +13,16 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Önceki
@@ -30,7 +30,7 @@
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
+ node_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
198
Sonraki
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Ay seçin
@@ -90,7 +90,7 @@
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Kenar çubuğu görünümleri güncellendi
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Kenar çubuğu görünümlerini güncellerken hata oluştu
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Güncelleme denetimi ayarları kaydedilirken bir hata oluştu.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3428,7 +3396,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
249
- Nesne başarıyla güncellendi.
+ Successfully updated object.
Error occurred saving object.
@@ -3440,7 +3408,7 @@
src/app/components/app-frame/global-search/global-search.component.ts
252
- Nesneyi kaydederken bir hatayla karşılașıldı.
+ Error occurred saving object.
Clear All
@@ -3540,7 +3508,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
22
- Şu kaynaklardan meta verileri kullan:
+ Use metadata from:
Regenerate all metadata
@@ -3548,7 +3516,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
24
- Tüm metaverileri yeniden oluştur
+ Regenerate all metadata
Try to include archive version in merge for non-PDF files
@@ -3556,7 +3524,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
32
- PDF olmayan dosyalar için birleştirme işlemine arşiv sürümünü dahil etmeye çalış
+ Try to include archive version in merge for non-PDF files
Delete original documents after successful merge
@@ -3564,7 +3532,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
36
- Birleştirme işlemi başarıyla tamamlandıktan sonra orijinal belgeleri sil
+ Delete original documents after successful merge
Note that only PDFs will be included.
@@ -3572,7 +3540,7 @@
src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html
39
- Yalnızca PDF dosyaları dahil edilecektir.
+ Note that only PDFs will be included.
Note that only PDFs will be rotated.
@@ -3580,7 +3548,7 @@
src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html
25
- Yalnızca PDF dosyaları döndürülecektir.
+ Note that only PDFs will be rotated.
View
@@ -3640,7 +3608,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts
94
- Alan kaydedilirken bir hata meydana geldi.
+ Alan kaydedilirken hata oluştu.
Today
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,13 +3686,13 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
- Evet
+ Doğru
False
@@ -3734,23 +3702,23 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
- Hayır
+ Yanlış
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Belgelerde ara...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Değil
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Sorgu Ekle
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
İfade Ekle
@@ -3830,6 +3798,18 @@
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
@@ -3878,19 +3858,11 @@
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
- 81
+ 76
1 hafta içinde
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
1 ay içinde
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
3 ay içinde
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
1 yıl içinde
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Bu yıl
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Bu ay
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Büyük / küçük harf duyarsız
@@ -4096,7 +4036,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
44
- 3-harfli para birimi kodu
+ 3-character currency code
Use locale
@@ -4104,7 +4044,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
44
- Yerel kullan
+ Use locale
Create new custom field
@@ -4112,7 +4052,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
118
- Yeni bir özel alan oluştur
+ Create new custom field
Edit custom field
@@ -4120,7 +4060,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts
122
- Özel alanı düzenle
+ Edit custom field
Create new document type
@@ -4160,7 +4100,7 @@
src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts
36
- Yeni bir kullanıcı grubu oluştur
+ Create new user group
Edit user group
@@ -4410,7 +4350,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
42
- Tüketim kapsamı
+ Consumption scope
See docs for .eml processing requirements
@@ -4418,7 +4358,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
42
- .eml işleme gereksinimleri için kullanma kılavuzuna bakınız
+ See docs for .eml processing requirements
Attachment type
@@ -4442,7 +4382,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
47
- Yalnızca şu ile eşleşen dosyaları dahil et
+ Include only files matching
Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
@@ -4454,7 +4394,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
48
- İ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.
+ Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive.
Exclude files matching
@@ -4502,7 +4442,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
59
- Kuraldan sahip ata
+ Kural ile Sahip ata
Assign document type
@@ -4512,7 +4452,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Dosya türü ata
@@ -4532,7 +4472,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Muhatap ata
@@ -4544,7 +4484,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4606,7 +4546,7 @@ tüm krite
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
57
- Mesajı .eml olarak ve ekleri ayrı ayrı işle
+ Process message as .eml and attachments separately
System default
@@ -4762,7 +4702,7 @@ tüm krite
src/app/components/manage/storage-path-list/storage-path-list.component.ts
51
- Dizin
+ Yol
See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>.
@@ -4770,7 +4710,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
@@ -4854,7 +4794,7 @@ tüm krite
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
15
- Üst düğüm
+ Parent
Inbox tag
@@ -4908,7 +4848,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
E-posta
@@ -5016,7 +4956,7 @@ tüm krite
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Yeni bir kullanıcı hesabı oluştur
@@ -5024,7 +4964,7 @@ tüm krite
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Kullanıcı hesabını düzenle
@@ -5032,7 +4972,7 @@ tüm krite
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Çift faktör Deaktif
@@ -5040,11 +4980,11 @@ tüm krite
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Çift faktör deaktivasyon hatası
@@ -5108,7 +5048,7 @@ tüm krite
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Tetiklenme tipi
@@ -5116,7 +5056,7 @@ tüm krite
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Zamanlanmış tetikleyici ofsetini ve hangi tarih alanının kullanılacağını ayarlayın.
@@ -5124,7 +5064,7 @@ tüm krite
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Gün ofseti
@@ -5132,23 +5072,23 @@ tüm krite
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
- Pozitif değerler tarihten sonra, negatif değerler tarihten önce tetiklenecektir.
+ 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
+ 137
- Şunun akrabası
+ Relative to
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Özel alan
@@ -5156,7 +5096,7 @@ tüm krite
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Tarih için kullanılacak özel alan.
@@ -5164,47 +5104,47 @@ tüm krite
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
- Tekrarlanan
+ Recurring
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
- Tetikleyici tekrar ediyor.
+ Trigger is recurring.
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
- Tekrarlayan aralık günleri
+ Recurring interval days
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
- Tetiği her "n" günde bir tekrarlayın.
+ 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
+ 156
- Aşağıda belirtilen tüm filtrelerle eşleşen belgeler için tetikleyici.
+ 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
+ 159
Dosya adı filtrele
@@ -5212,7 +5152,7 @@ tüm krite
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Bu dosya adıyla eşleşen belgelere uygulayın, *.pdf veya *fatura* gibi joker karakterlere de izin verilir. Büyük/küçük harf fark etmeksizin.
@@ -5220,15 +5160,15 @@ tüm krite
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
- Kaynakları filtrele
+ Filter sources
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Filtre Yolu
@@ -5236,15 +5176,15 @@ tüm krite
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
- Bu dizine uyan belgelere uygulanır. * olarak belirtilen joker karakterlere izin verilir. Büyük-küçük harf duyarsızdır.</a>
+ 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
+ 163
Posta kuralı filtrele
@@ -5252,71 +5192,71 @@ tüm krite
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
- Bu posta kuralı aracılığıyla kullanılan belgelere uygulayın.
+ 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
+ 166
- İçerik eşleştirme algoritması
+ Content matching algorithm
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
- İçerik eşleştirme modeli
+ Content matching pattern
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- Gelişmiş Filtreler
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- Filtre ekle
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- Gelişmiş bir iş akışı filtresi tanımlanmamıştır.
+ 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
+ 222,224
- Özel alan sorgu yapılandırmasını tamamlayın.
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
- Eylem türü
+ Action type
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Başlık at
@@ -5324,15 +5264,15 @@ tüm krite
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
- Bazı yer tutucular içerebilir, bkz. <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokümantasyon</a>.
+ 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
+ 262
Etiketler ata
@@ -5340,31 +5280,31 @@ tüm krite
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
- Depolama dizini atayın
+ Assign storage path
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
- Özel alanları atayın
+ Assign custom fields
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
- Sahip ata
+ Sahip Ata
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Yeni görüntüleme izni ata
@@ -5372,7 +5312,7 @@ tüm krite
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Yeni değiştire izni ata
@@ -5380,47 +5320,47 @@ tüm krite
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
- Etiketleri kaldır
+ Remove tags
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
- Tümünü kaldır
+ Remove all
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Muhatapları kaldır
@@ -5428,63 +5368,63 @@ tüm krite
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
- Tüm belge tiplerini kaldır
+ Remove document types
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
- Tüm depolama dizinlerini kaldır
+ Remove storage paths
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
- Özel alanları kaldır
+ Remove custom fields
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
- Tüm sahipleri kaldır
+ Remove owners
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
- İzinleri kaldır
+ Remove permissions
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
- İzinleri görüntüle
+ View permissions
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
- İzinleri düzenle
+ Edit permissions
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
E-posta konusu
@@ -5492,7 +5432,7 @@ tüm krite
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
E-posta gövdesi
@@ -5500,7 +5440,7 @@ tüm krite
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
E-posta alıcıları
@@ -5508,7 +5448,7 @@ tüm krite
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Belge ekle
@@ -5516,7 +5456,7 @@ tüm krite
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook url
@@ -5524,23 +5464,23 @@ tüm krite
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
- Webhook gövdesi için parametreleri kullanın
+ 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
+ 419
- Webhook yükünü JSON olarak gönder
+ Send webhook payload as JSON
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook parametreleri
@@ -5548,7 +5488,7 @@ tüm krite
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook gövdesi
@@ -5556,7 +5496,7 @@ tüm krite
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook başlıkları
@@ -5564,7 +5504,7 @@ tüm krite
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Belge içeriyor
@@ -5626,7 +5566,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
109
- Tüketim işlemi başladı
+ İşleme başladı
Document Added
@@ -5682,7 +5622,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- Bu herhangi etiketlere sahip
+ Has any of these tags
Has all of these tags
@@ -5690,7 +5630,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- Bu tüm etiketlere sahip
+ Has all of these tags
Does not have these tags
@@ -5698,7 +5638,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- Bu etiketlere sahip değil
+ Does not have these tags
Has correspondent
@@ -5714,7 +5654,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- Muhatablara sahip değil
+ Does not have correspondents
Has document type
@@ -5722,7 +5662,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
240
- Belge türüne sahip
+ Has document type
Does not have document types
@@ -5730,7 +5670,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- Belge türlerine sahip değil
+ Does not have document types
Has storage path
@@ -5738,7 +5678,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
256
- Depolama dizinine sahip
+ Has storage path
Does not have storage paths
@@ -5746,7 +5686,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- Depolama dizininlerine sahip değil
+ Does not have storage paths
Matches custom field query
@@ -5754,7 +5694,7 @@ tüm krite
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- Özel alan sorgusuyla eşleşir
+ Matches custom field query
Create new workflow
@@ -5778,7 +5718,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {1 Posta Belgesi} other { Posta Belgesi}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5814,7 +5754,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
27
- Arşiv sürümünü kullan
+ Use archive version
Send email
@@ -5830,7 +5770,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- Bazı e-posta sunucuları büyük ekleri olan mesajları reddedebilir.
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5846,7 +5786,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- Belgeleri e-posta ile gönderirken bir hatayla karşılașıldı
+ Error emailing documents
Error emailing document
@@ -5854,7 +5794,7 @@ tüm krite
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
70
- Belgeyi postalarken bir hata meydana geldi
+ Belgeyi postalarken hata oluştu
Include
@@ -5920,7 +5860,7 @@ tüm krite
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Atanmadı
@@ -5929,7 +5869,7 @@ tüm krite
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
filtresini aç
@@ -6009,7 +5949,7 @@ tüm krite
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6146,11 +6086,11 @@ tüm krite
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6176,7 +6116,7 @@ tüm krite
src/app/components/common/input/switch/switch.component.html
39
- Not: Değer henüz belirlenmemiştir ve değiştirilene kadar geçerli olmayacaktır
+ Note: value has not yet been set and will not apply until explicitly changed
Add tag
@@ -6288,7 +6228,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
44
- Burada belge ayrıcı ekle/kaldır
+ Add / remove document split here
Split here
@@ -6320,7 +6260,7 @@ tüm krite
src/app/components/common/pdf-editor/pdf-editor.component.html
94
- Meta veriyi kopyala
+ Copy metadata
Delete original
@@ -6492,7 +6432,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
33
- API Yetkilendirme Tokeni
+ API Auth Token
Copy
@@ -6540,7 +6480,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
47
- Kimlik doğrulama tokenini yeniden oluştur
+ Regenerate auth token
Copied!
@@ -6564,7 +6504,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
56
- Uyarı: Token değiştirilmesi geri alınamaz
+ Warning: changing the token cannot be undone
Connected social accounts
@@ -6572,7 +6512,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
62
- Bağlı sosyal hesaplar
+ Connected social accounts
Set a password before disconnecting social account.
@@ -6580,7 +6520,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
66
- Sosyal medya hesabını kaldırmadan önce bir şifre belirleyin.
+ Set a password before disconnecting social account.
Disconnect
@@ -6596,7 +6536,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
74
- sosyal hesabı kaldır
+ Disconnect social account
Warning: disconnecting social accounts cannot be undone
@@ -6604,7 +6544,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
84
- Uyarı: sosyal hesapların sistemden kaldırılması geri alınamaz
+ Warning: disconnecting social accounts cannot be undone
Connect new social account
@@ -6612,7 +6552,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
89
- Yeni sosyal hesap bağla
+ Connect new social account
Scan the QR code with your authenticator app and then enter the code below
@@ -6620,7 +6560,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
114
- Doğrulama uygulamanızla QR kodunu tarayın ve ardından aşağıya kodu girin
+ Scan the QR code with your authenticator app and then enter the code below
Authenticator secret
@@ -6628,7 +6568,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
117
- Kimlik doğrulama sırrı
+ Authenticator secret
You can store this secret and use it to reinstall your authenticator app at a later time.
@@ -6636,7 +6576,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
118
- Bu gizli bilgiyi saklayabilir ve daha sonra kimlik doğrulama uygulamanızı yeniden yüklemek için kullanabilirsiniz.
+ You can store this secret and use it to reinstall your authenticator app at a later time.
Code
@@ -6644,7 +6584,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
121
- Kod
+ Code
Recovery codes will not be shown again, make sure to save them.
@@ -6652,7 +6592,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
140
- Kurtarma kodları bir daha gösterilmeyecektir, mutlaka kaydediniz.
+ Recovery codes will not be shown again, make sure to save them.
Copy codes
@@ -6660,7 +6600,7 @@ tüm krite
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html
158
- Kodları kopyala
+ Copy codes
Emails must match
@@ -6682,7 +6622,7 @@ tüm krite
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Profil başarıyla güncellendi
@@ -6690,73 +6630,73 @@ tüm krite
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
- Profil kaydedilirken bir hata ile karşılaşıldı
+ Error saving profile
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
- Yetkilendirme tokeni oluştururken bir hatayla karşılaşıldı
+ Error generating auth token
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
- Sosyal hesapları kaldırırken bir hata ile karşılaşıldı
+ Error disconnecting social account
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
- TOTP ayarları alınırken bir hata ile karşılaşıldı
+ Error fetching TOTP settings
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
- TOTP başarıyla etkinleştirildi
+ TOTP activated successfully
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
- TOTP etkinleştirilirken bir hata ile karşılaşıldı
+ Error activating TOTP
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
- TOTP başarıyla devre dışı bırakıldı
+ TOTP deactivated successfully
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
- TOTP devre dışı bırakılırken bir hata ile karşılaşıldı
+ Error deactivating TOTP
No existing links
@@ -6764,7 +6704,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
8,10
- Herhangi bir mevcut link bulunmuyor
+ No existing links
Share
@@ -6772,7 +6712,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
32
- Paylaş
+ Share
Share archive version
@@ -6780,7 +6720,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
48
- Arşiv sürümünü paylaş
+ Share archive version
Expires
@@ -6788,7 +6728,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.html
52
- Son Kullanım Tarihi
+ Expires
1 day
@@ -6800,7 +6740,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
102
- 1 gün
+ 1 day
7 days
@@ -6808,7 +6748,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
26
- 7 gün
+ 7 days
30 days
@@ -6844,7 +6784,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
83
- Linkler alınırken bir hata meydana geldi
+ Linkleri getirirken hata oluştu
days
@@ -6860,7 +6800,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
131
- Linki silerken bir hata meydana geldi
+ Linki silerken hata oluştu
Error creating link
@@ -6868,7 +6808,7 @@ tüm krite
src/app/components/common/share-links-dialog/share-links-dialog.component.ts
159
- Link oluşturulurken bir hata meydana geldi
+ Linki oluşturma hatası
Environment
@@ -6964,7 +6904,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
76
- Veritabanı İşlemleri Durumu
+ Göç Durumu
Up to date
@@ -6972,7 +6912,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
80
- Güncel
+ Up to date
Latest Migration
@@ -6980,7 +6920,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
85
- En Son Uygulanan Veritabanı İşlemleri
+ Latest Migration
Pending Migrations
@@ -6988,7 +6928,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
87
- Bekleyen Veritabanı İşlemleri
+ Pending Migrations
Tasks Queue
@@ -6996,7 +6936,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
105
- Görev Sırası
+ Tasks Queue
Redis Status
@@ -7012,7 +6952,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
127
- Celery'nin Durumu
+ Celery Status
Health
@@ -7020,7 +6960,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
153
- Sağlık
+ Health
Search Index
@@ -7028,7 +6968,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
157
- Arama İndeksi
+ Search Index
Run Task
@@ -7044,7 +6984,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
245
- Görevi Çalıştır
+ Run Task
Last Updated
@@ -7052,7 +6992,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
184
- Son Güncellenme Tarihi
+ Last Updated
Classifier
@@ -7060,7 +7000,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
189
- Sınıflandırıcı
+ Classifier
Last Trained
@@ -7068,7 +7008,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
218
- Son Eğitim Tarihi
+ Last Trained
Sanity Checker
@@ -7076,7 +7016,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
223
- Son Geçerlilik Kontrol Edilme Tarihi
+ Sanity Checker
Last Run
@@ -7084,7 +7024,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
252
- Son Çalıştırma
+ Last Run
WebSocket Connection
@@ -7092,7 +7032,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
257
- Websocket Bağlantısı
+ WebSocket Connection
OK
@@ -7100,7 +7040,7 @@ tüm krite
src/app/components/common/system-status-dialog/system-status-dialog.component.html
261
- Tamam
+ OK
Copy Raw Error
@@ -7108,7 +7048,7 @@ tüm krite
src/app/components/common/toast/toast.component.html
43
- Hatayı Olduğu Gibi Kopyala
+ Copy Raw Error
Hint: saved views can be created from the documents list
@@ -7116,7 +7056,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.html
42
- İpucu: kaydedilmiş görünümler documents list 'den oluşturulabilir
+ Hint: saved views can be created from the documents list
Hello , welcome to
@@ -7124,7 +7064,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
61
- Merhaba , hoşgeldiniz
+ Hello , welcome to
Welcome to
@@ -7132,7 +7072,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
63
- Hoş Geldiniz
+ Welcome to
Dashboard updated
@@ -7140,7 +7080,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
94
- Kontrol Paneli yenilendi
+ Dashboard updated
Error updating dashboard
@@ -7148,7 +7088,7 @@ tüm krite
src/app/components/dashboard/dashboard.component.ts
97
- Kontrol panelini yenilerken bir hatayla karşılașıldı
+ Error updating dashboard
Show all
@@ -7188,7 +7128,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
363
- Belge türüne göre filtrele
+ Filter by document type
Filter by storage path
@@ -7204,7 +7144,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
370
- Depolama dizinine göre filtrele
+ Filter by storage path
Filter by owner
@@ -7212,7 +7152,7 @@ tüm krite
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
74
- Sahibine göre filtrele
+ Filter by owner
Yes
@@ -7244,7 +7184,7 @@ tüm krite
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html
149
- Belge yok
+ No documents
Statistics
@@ -7260,7 +7200,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
28
- Gelen kutusuna git
+ Go to inbox
Documents in inbox
@@ -7268,7 +7208,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
29
- Gelen kutusundaki belgeler
+ Documents in inbox
Go to documents
@@ -7276,7 +7216,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
33
- Belgelere git
+ Go to documents
Total documents
@@ -7284,7 +7224,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
34
- Toplam Belge
+ Total documents
Total characters
@@ -7292,7 +7232,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
38
- Toplam Karakter
+ Total characters
Current ASN
@@ -7300,7 +7240,7 @@ tüm krite
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
43
- Mevcut ASN
+ Current ASN
Other
@@ -7316,7 +7256,7 @@ tüm krite
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
6
- Belge veya belgeler yükle
+ Upload documents
or drop files anywhere
@@ -7324,7 +7264,7 @@ tüm krite
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html
7
- veya dosyaları herhangi bir yere bırakın
+ or drop files anywhere
Dismiss completed
@@ -7378,7 +7318,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
2
- Paperless-ngx çalışıyor!
+ 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.
@@ -7386,7 +7326,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
3
- 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.
+ 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.
@@ -7394,7 +7334,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
4
- Paperless-ngx'in kullanımı ve yapılandırılması hakkında daha fazla bilgiye her zaman dokümantasyon adresinden ulaşabilirsiniz.
+ 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!
@@ -7402,7 +7342,7 @@ tüm krite
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html
7
- Paperless-ngx topluluğunun bir parçası olduğunuz için teşekkür ederiz!
+ Thanks for being a part of the Paperless-ngx community!
Start the tour
@@ -7438,7 +7378,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
7,8
- 'dan/den
+ of
-
@@ -7446,7 +7386,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
11
- -
+ -
+
@@ -7454,7 +7394,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
19
- +
+ +
Download original
@@ -7474,7 +7414,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
91
- Yeniden İşle
+ Reprocess
Print
@@ -7482,7 +7422,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
58
- Yazdır
+ Print
More like this
@@ -7506,7 +7446,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1392
- PDF Düzenleyici
+ PDF Editor
Send
@@ -7514,7 +7454,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
84
- Gönder
+ Send
Previous
@@ -7544,7 +7484,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -7778,7 +7718,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
321,324
- Notlar
+ Notes
History
@@ -7786,7 +7726,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
332
- Geçmiş
+ History
Save & next
@@ -7794,7 +7734,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
369
- Kaydet ve sonrakine geç
+ Kaydet & sonraki
Save & close
@@ -7802,7 +7742,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
372
- Kaydet ve kapat
+ Save & close
Document loading...
@@ -7810,7 +7750,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.html
382
- Belge Yükleniyor...
+ Document loading...
Enter Password
@@ -7826,7 +7766,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
416,418
- İçerik yüklenirken bir hata ile karşılaşıldı:
+ An error occurred loading content:
Document changes detected
@@ -7834,7 +7774,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
450
- Belge değişiklikler algılandı
+ Document changes detected
The version of this document in your browser session appears older than the existing version.
@@ -7842,7 +7782,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
451
- Tarayıcı oturumunuzdaki bu belgenin sürümü, mevcut sürümden daha eski görünüyor.
+ 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.
@@ -7850,7 +7790,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
452
- 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.
+ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
Ok
@@ -7858,7 +7798,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
454
- Tamam
+ Ok
Next document
@@ -7866,7 +7806,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
580
- Sonraki belge
+ Next document
Previous document
@@ -7874,7 +7814,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
590
- Önceki belge
+ Previous document
Close document
@@ -7894,7 +7834,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
605
- Belgeyi kaydet
+ Save document
Save and close / next
@@ -7902,7 +7842,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
614
- Kaydet, kapat ve bir sonrakine geç
+ Save and close / next
Error retrieving metadata
@@ -7910,7 +7850,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
669
- Metaveri alınırken bir hata meydana geldi
+ Metaveri alınırken hata oluştu
Error retrieving suggestions.
@@ -7918,7 +7858,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
698
- Öneriler getirilirken bir hata meydana geldi.
+ Önerileri getirirken hata oluştu.
Document "" saved successfully.
@@ -7930,7 +7870,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
894
- "" belgesi başarıyla kaydedildi.
+ Document "" saved successfully.
Error saving document ""
@@ -7938,7 +7878,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
900
- Belgeyi kaydederken bir hata ile karşılaşıldı ""
+ Error saving document ""
Error saving document
@@ -7946,7 +7886,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
950
- Belge kaydedilirken bir hata ile karşılaşıldı
+ Error saving document
Do you really want to move the document "" to the trash?
@@ -7954,7 +7894,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
982
- belgesini gerçekten çöp kutusuna taşımak istiyor musunuz?
+ Do you really want to move the document "" to the trash?
Documents can be restored prior to permanent deletion.
@@ -7966,7 +7906,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
754
- Belgeler kalıcı olarak silinmeden önce geri yüklenebilir.
+ Documents can be restored prior to permanent deletion.
Move to trash
@@ -7978,7 +7918,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
756
- Çöp kutusuna taşı
+ Move to trash
Error deleting document
@@ -7986,7 +7926,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1004
- Belge silinirken bir hata meydana geldi
+ Error deleting document
Reprocess confirm
@@ -7998,7 +7938,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
794
- Yeniden işlemeyi onayla
+ Reprocess confirm
This operation will permanently recreate the archive file for this document.
@@ -8006,7 +7946,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1025
- Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.
+ This operation will permanently recreate the archive file for this document.
The archive file will be re-generated with the current settings.
@@ -8014,7 +7954,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1026
- Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır.
+ 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.
@@ -8022,7 +7962,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1036
- "" 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.
+ 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
@@ -8030,7 +7970,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1047
- İşlemi gerçekleştirirken bir hata ile karşılaşıldı
+ Error executing operation
Error downloading document
@@ -8038,7 +7978,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1096
- Belge indirilirken bir hata meydana geldi
+ Error downloading document
Page Fit
@@ -8046,7 +7986,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1173
- Sayfa Sığdır
+ Page Fit
PDF edit operation for "" will begin in the background.
@@ -8054,7 +7994,7 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1411
- "" için PDF düzenleme işlemleri arka planda başlayacak.
+ PDF edit operation for "" will begin in the background.
Error executing PDF edit operation
@@ -8062,35 +8002,35 @@ tüm krite
src/app/components/document-detail/document-detail.component.ts
1423
- PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı
+ Error executing PDF edit operation
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
- Yazdırma başarısız oldu.
+ Print failed.
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
- Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı.
+ Error loading document for printing.
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
- tiff'i yüklenirken bir hata meydana geldi
+ An error occurred loading tiff:
No entries found.
@@ -8098,7 +8038,7 @@ tüm krite
src/app/components/document-history/document-history.component.html
10
- Hiçbir kayıt bulunamadı.
+ No entries found.
Edit:
@@ -8154,7 +8094,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.html
73
- Depolama dizinlerine göre filtrele
+ Filter storage paths
Custom fields
@@ -8168,9 +8108,9 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
- Özel alanlar
+ Custom fields
Filter custom fields
@@ -8178,7 +8118,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
62
- Özel alanları filtrele
+ Filter custom fields
Set values
@@ -8186,7 +8126,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
70
- Değerleri ayarla
+ Set values
Rotate
@@ -8194,7 +8134,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
94
- Döndür
+ Rotate
Merge
@@ -8202,39 +8142,39 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.html
97
- Birleştir
+ Merge
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
- Dahil et:
+ Include:
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
- Arşivlenen dosyalar
+ Archived files
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
- Orijinal dosyalar
+ Original files
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
- Formatlanmış dosya adını kullan
+ Use formatted filename
Error executing bulk operation
@@ -8242,7 +8182,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
290
- Toplu işlemler çalıştırılırken bir hata ile karşılaşıldı
+ Error executing bulk operation
""
@@ -8280,7 +8220,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
405
- Etiket atanmasını onaylayın
+ Etiket atanmayi doğrulayın
This operation will add the tag "" to selected document(s).
@@ -8296,7 +8236,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
416,418
- Bu işlem etiketlerini seçili belge veya belgelere ekleyecektir.
+ This operation will add the tags to selected document(s).
This operation will remove the tag "" from selected document(s).
@@ -8312,7 +8252,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
429,431
- Bu işlem etiketlerini seçili belge veya belgelerden kaldıracaktır.
+ This operation will remove the tags from selected document(s).
This operation will add the tags and remove the tags on selected document(s).
@@ -8376,7 +8316,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
550
- Depolama dizinlerini atamayı onaylayın
+ Confirm storage path assignment
This operation will assign the storage path "" to selected document(s).
@@ -8384,7 +8324,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
552
- Bu işlem, depolama dizinini, seçilmiş belgeye atayacaktır.
+ This operation will assign the storage path "" to selected document(s).
This operation will remove the storage path from selected document(s).
@@ -8392,7 +8332,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
554
- Bu işlem belgeden depolama dizinini kaldıracaktır.
+ This operation will remove the storage path from selected document(s).
Confirm custom field assignment
@@ -8400,7 +8340,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
583
- Özel alan atamasını onaylayın
+ Confirm custom field assignment
This operation will assign the custom field "" to selected document(s).
@@ -8408,7 +8348,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
589
- Bu işlem, özel alanını, seçilmiş belgeye atayacaktır.
+ This operation will assign the custom field "" to selected document(s).
This operation will assign the custom fields to selected document(s).
@@ -8416,7 +8356,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
594,596
- Bu işlem, özel alanlarını, seçilmiş belgeye atayacaktır.
+ This operation will assign the custom fields to selected document(s).
This operation will remove the custom field "" from selected document(s).
@@ -8424,7 +8364,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
602
- Bu işlem alanını belgeden kaldıracaktır.
+ This operation will remove the custom field "" from selected document(s).
This operation will remove the custom fields from selected document(s).
@@ -8432,7 +8372,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
607,609
- Bu işlem alanlarını belgeden kaldıracaktır.
+ 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).
@@ -8440,7 +8380,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
611,615
- Bu işlem, alanlarını atayacak ve alanlarını seçili belgeden kaldıracaktır.
+ This operation will assign the custom fields and remove the custom fields on selected document(s).
Move selected document(s) to the trash?
@@ -8448,7 +8388,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
753
- Seçilmiş belgeyi çöp kutusuna taşımak istiyor musunuz?
+ Move selected document(s) to the trash?
This operation will permanently recreate the archive files for selected document(s).
@@ -8456,7 +8396,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
795
- Bu işlem, seçilmiş belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır.
+ This operation will permanently recreate the archive files for selected document(s).
The archive files will be re-generated with the current settings.
@@ -8464,7 +8404,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
796
- Arşiv dosyaları mevcut ayarlarla yeniden oluşturulacaktır.
+ The archive files will be re-generated with the current settings.
Rotate confirm
@@ -8472,7 +8412,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
828
- Döndürmeyi onaylayın
+ Rotate confirm
This operation will permanently rotate the original version of document(s).
@@ -8480,7 +8420,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
829
- Bu işlem belgede, orijinal sürümündeki sayfaları kalıcı olarak döndürecektir.
+ This operation will permanently rotate the original version of document(s).
Merge confirm
@@ -8488,7 +8428,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
848
- Birleştirmeyi onaylayın
+ Merge confirm
This operation will merge selected documents into a new document.
@@ -8496,7 +8436,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
849
- Bu işlem belgeyi yeni bir belgede birleştirecektir.
+ This operation will merge selected documents into a new document.
Merged document will be queued for consumption.
@@ -8504,7 +8444,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
868
- Birleştirilen belge tüketim için sıraya alınacaktır.
+ Merged document will be queued for consumption.
Custom fields updated.
@@ -8512,7 +8452,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
892
- Özel alanlar güncelleştirildi.
+ Custom fields updated.
Error updating custom fields.
@@ -8520,7 +8460,7 @@ tüm krite
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
901
- Özel alanları güncellerken bir hatayla karşılaşıldı.
+ Error updating custom fields.
{VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
@@ -8528,7 +8468,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 {1 belge için özel alanlar ayarla} other { belge için özel alanlar ayarla}}
+ {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}}
Select custom fields
@@ -8536,7 +8476,7 @@ tüm krite
src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html
13
- Özel alanları seçin
+ Select custom fields
{VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also
@@ -8545,7 +8485,8 @@ 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 {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.}}
+ {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
@@ -8565,7 +8506,7 @@ tüm krite
src/app/components/document-list/document-card-large/document-card-large.component.html
91
- Notları görüntüle
+ View notes
Created:
@@ -8581,7 +8522,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
91,92
- Oluşturulmuş:
+ Created:
Added:
@@ -8625,7 +8566,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
106
- {VAR_PLURAL, plural, =1 {1 sayfa} other { sayfa}}
+ {VAR_PLURAL, plural, =1 {1 page} other { pages}}
Shared
@@ -8645,7 +8586,7 @@ tüm krite
src/app/pipes/username.pipe.ts
35
- Paylaşıldı
+ Shared
Score:
@@ -8661,7 +8602,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
20
- Etiket filtresini aç/kapat
+ Toggle tag filter
Toggle correspondent filter
@@ -8677,7 +8618,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
59
- Belge türü filtresini aç/kapat
+ Toggle document type filter
Toggle storage path filter
@@ -8685,7 +8626,7 @@ tüm krite
src/app/components/document-list/document-card-small/document-card-small.component.html
66
- Depolama dizini filtresini aç/kapat
+ Toggle storage path filter
Select
@@ -8731,14 +8672,6 @@ tüm krite
Tümünü seç
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Seç:
-
None
@@ -8755,6 +8688,18 @@ 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
@@ -8793,7 +8738,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
117
- Tüm kaydedilen görünümler
+ All saved views
{VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
@@ -8801,7 +8746,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
137
- {VAR_PLURAL, plural, =1 {Bir belgeden seçilen } other { belgeden Seçilen }}
+ {VAR_PLURAL, plural, =1 {Seçili 1 belgeden} other {Seçili , belgeden}}
{VAR_PLURAL, plural, =1 {One document} other { documents}}
@@ -8837,7 +8782,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
169
- Belgeleri yüklerken bir hata ile karşılaşıldı
+ Error while loading documents
Sort by ASN
@@ -8845,7 +8790,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
198
- ASN'ye göre sıralama
+ Sort by ASN
ASN
@@ -8855,7 +8800,7 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -8881,7 +8826,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
216
- Başlığa göre sırala
+ Sort by title
Sort by owner
@@ -8889,7 +8834,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
229
- Sahibine göre sırala
+ Sort by owner
Owner
@@ -8905,7 +8850,7 @@ tüm krite
src/app/data/document.ts
96
- Sahip
+ Sahibi
Sort by notes
@@ -8913,7 +8858,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
238
- Notlara göre sırala
+ Sort by notes
Sort by document type
@@ -8921,7 +8866,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
247
- Belge türüne göre sırala
+ Sort by document type
Sort by storage path
@@ -8929,7 +8874,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
256
- Kayıt dizinine göre sırala
+ Sort by storage path
Sort by created date
@@ -8937,7 +8882,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
265
- Oluşturma tarihine göre sırala
+ Sort by created date
Sort by added date
@@ -8945,7 +8890,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
274
- Sisteme eklendiği tarihe göre sırala
+ Sort by added date
Sort by number of pages
@@ -8953,7 +8898,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
283
- Sayfa sayısına göre sırala
+ Sort by number of pages
Pages
@@ -8973,7 +8918,7 @@ tüm krite
src/app/data/paperless-config.ts
91
- Sayfalar
+ Pages
Shared
@@ -8981,7 +8926,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
290,292
- Paylaşılmış
+ Shared
Sort by
@@ -8989,7 +8934,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
297,298
- göre sırala
+ Sort by
Edit document
@@ -9005,7 +8950,7 @@ tüm krite
src/app/components/document-list/document-list.component.html
332
- Belgeyi ön izle
+ Preview document
Reset filters / selection
@@ -9013,7 +8958,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
296
- Filtreleri / seçimi sıfırla
+ Reset filters / selection
Open first [selected] document
@@ -9021,7 +8966,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
324
- İlk [selected] belgeyi aç
+ Open first [selected] document
Previous page
@@ -9029,7 +8974,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
340
- Önceki sayfa
+ Previous page
Next page
@@ -9037,7 +8982,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
352
- Sonraki sayfa
+ Next page
View "" saved successfully.
@@ -9053,7 +8998,7 @@ tüm krite
src/app/components/document-list/document-list.component.ts
391
- "" görünümünü kaydederken bir hata ile karşılaşıldı.
+ Failed to save view "".
View "" created successfully.
@@ -9069,13 +9014,13 @@ tüm krite
src/app/components/document-list/filter-editor/filter-editor.component.html
90
- Tarihler
+ Dates
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Başlık ve içerik
@@ -9083,15 +9028,15 @@ tüm krite
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
- Dosya tipi
+ File type
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Benzeri gibi
@@ -9099,7 +9044,7 @@ tüm krite
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
eşittir
@@ -9107,7 +9052,7 @@ tüm krite
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
boş
@@ -9115,7 +9060,7 @@ tüm krite
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
boş değil
@@ -9123,23 +9068,23 @@ tüm krite
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
- den büyük
+ greater than
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
- den küçük
+ less than
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Muhatap:
@@ -9147,7 +9092,7 @@ tüm krite
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Muhatapsız
@@ -9155,15 +9100,15 @@ tüm krite
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
- Belge türü:
+ Document type:
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Belge türü olmayan
@@ -9171,47 +9116,47 @@ tüm krite
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
- Depolama dizini:
+ Storage path:
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
- Depolama dizini olmadan
+ Without storage path
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
- Etiket:
+ Tag:
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
- Etiketsiz
+ Herhangi bir künye olmayan
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
- Özel alan sorgusu
+ Custom fields query
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Başlık:
@@ -9219,7 +9164,7 @@ tüm krite
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9227,25 +9172,25 @@ tüm krite
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
- Sahibi:
+ Owner:
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
- Sahibi içinde değil:
+ Owner not in:
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
- Sahipsiz
+ Without an owner
Save current view
@@ -9277,7 +9222,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
20
- Kontrol panelinde göster
+ Gösterge tablosunda göster
Filter rules error occurred while saving this view
@@ -9285,7 +9230,7 @@ tüm krite
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
13
- Bu görünümü kaydederken filtre kuralları ile ilgili bir hata meydana geldi
+ Filter rules error occurred while saving this view
The error returned was
@@ -9293,7 +9238,7 @@ tüm krite
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
14
- Hatanın gönderdiği
+ The error returned was
Enter note
@@ -9301,7 +9246,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
5
- Not ekle
+ Enter note
Please enter a note.
@@ -9309,7 +9254,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
6,8
- Lütfen bir not girin
+ Please enter a note.
Add note
@@ -9317,7 +9262,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
14
- Not ekle
+ Add note
Delete note
@@ -9329,7 +9274,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.html
27
- Notu sil
+ Delete note
Error saving note
@@ -9337,7 +9282,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.ts
81
- Not kaydedilirken bir hata oluştu
+ Error saving note
Error deleting note
@@ -9345,7 +9290,7 @@ tüm krite
src/app/components/document-notes/document-notes.component.ts
95
- Not silerken bir hata oluştu
+ Error deleting note
Drop files to begin upload
@@ -9365,7 +9310,7 @@ tüm krite
src/app/components/file-drop/file-drop.component.ts
146
- Yükleme başlatılıyor...
+ Initiating upload...
Failed to read dropped items:
@@ -9373,7 +9318,7 @@ tüm krite
src/app/components/file-drop/file-drop.component.ts
142
- Bırakılan öğeleri okurken bir hata meydana geldi:
+ Failed to read dropped items:
correspondent
@@ -9413,7 +9358,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
4
- Belgelere eklenebilecek veri alanlarını özelleştirin.
+ Customize the data fields that can be attached to documents.
Add Field
@@ -9421,7 +9366,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
9
- Alan Ekle
+ Add Field
Data Type
@@ -9429,7 +9374,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
18
- Veri Tipi
+ Data Type
Filter Documents ()
@@ -9453,7 +9398,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.html
117
- Belgeleri Filtrele ()
+ Filter Documents ()
No fields defined.
@@ -9461,7 +9406,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.html
70
- Herhangi bir alan tanımlanmadı.
+ No fields defined.
Confirm delete field
@@ -9469,7 +9414,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
102
- Alanı silmeyi onayla
+ Confirm delete field
This operation will permanently delete this field.
@@ -9477,7 +9422,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
103
- Bu işlem alanı kalıcı olarak silecektir.
+ This operation will permanently delete this field.
Deleted field ""
@@ -9485,7 +9430,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
112
- "" alanı silindi
+ Deleted field ""
Error deleting field "".
@@ -9493,7 +9438,7 @@ tüm krite
src/app/components/manage/custom-fields/custom-fields.component.ts
121
- "" alanını silerken bir hata ile karşılaşıldı.
+ Error deleting field "".
document type
@@ -9525,7 +9470,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
2
- Posta Ayarları
+ Mail Settings
Mail accounts
@@ -9533,7 +9478,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
12
- Posta Hesapları
+ Mail accounts
Add Account
@@ -9541,7 +9486,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
14
- Hesap Ekle
+ Add Account
Connect Gmail Account
@@ -9549,7 +9494,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
18
- Gmail Hesabını Bağla
+ Connect Gmail Account
Connect Outlook Account
@@ -9557,7 +9502,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
23
- Outlook Hesabını Bağla
+ Connect Outlook Account
Server
@@ -9565,7 +9510,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
31
- Sunucu
+ Server
Process Mail
@@ -9577,7 +9522,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
86
- Posta İşlemi
+ Process Mail
No mail accounts defined.
@@ -9585,7 +9530,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
95
- Tanımlanmış bir posta hesabı yok.
+ No mail accounts defined.
Mail rules
@@ -9593,7 +9538,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
103
- E-posta kuralları
+ Mail rules
Add Rule
@@ -9601,7 +9546,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
105
- Kural Ekle
+ Add Rule
Sort Order
@@ -9609,7 +9554,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
112
- Sıralama
+ Sort Order
Disabled
@@ -9621,7 +9566,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
41
- Devre dışı
+ Disabled
View Processed Mail
@@ -9629,7 +9574,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
143
- İşlenmiş Postaları Görüntüle
+ View Processed Mail
No mail rules defined.
@@ -9637,7 +9582,7 @@ tüm krite
src/app/components/manage/mail/mail.component.html
183
- Tanımlanmış bir posta kuralı mevcut değil.
+ No mail rules defined.
Error retrieving mail accounts
@@ -9645,7 +9590,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
105
- Posta hesaplarından bilgi alırken bir hata meydana geldi
+ Error retrieving mail accounts
Error retrieving mail rules
@@ -9653,7 +9598,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
127
- Posta kurallarını yüklerken bir hata meydana geldi
+ Error retrieving mail rules
OAuth2 authentication success
@@ -9661,7 +9606,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
135
- OAuth2 yetkilendirmesi başarılı
+ OAuth2 authentication success
OAuth2 authentication failed, see logs for details
@@ -9669,7 +9614,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
146
- OAuth2 yetkilendirmesi ile ilgili bir hata meydana geldi, detaylar için günlüklere göz atın
+ OAuth2 authentication failed, see logs for details
Saved account "".
@@ -9677,7 +9622,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
170
- "" hesabı kaydedildi.
+ Saved account "".
Error saving account.
@@ -9685,7 +9630,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
182
- Hesabı kaydederken bir hata ile karşılaşıldı.
+ Error saving account.
Confirm delete mail account
@@ -9693,7 +9638,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
190
- Posta hesabının silinmesini onaylayın
+ Confirm delete mail account
This operation will permanently delete this mail account.
@@ -9701,7 +9646,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
191
- Bu işlem, bu posta hesabını kalıcı olarak silecektir.
+ This operation will permanently delete this mail account.
Deleted mail account ""
@@ -9709,7 +9654,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
201
- "" posta hesabı silindi
+ Deleted mail account ""
Error deleting mail account "".
@@ -9717,7 +9662,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
212
- "" posta hesabı silinirken bir hata meydana geldi.
+ Error deleting mail account "".
Processing mail account ""
@@ -9725,7 +9670,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
224
- "" posta hesabı işleniyor
+ Processing mail account ""
Error processing mail account ""
@@ -9733,7 +9678,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
229
- "" posta hesabı işlenirken bir hata meydana geldi
+ Error processing mail account ""
Saved rule "".
@@ -9741,7 +9686,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
247
- "" kuralı kaydedildi.
+ Saved rule "".
Error saving rule.
@@ -9749,7 +9694,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
258
- Kuralı kaydedilirken bir hata meydana geldi.
+ Error saving rule.
Rule "" enabled.
@@ -9757,7 +9702,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
274
- "" kuralı aktifleştirildi.
+ Rule "" enabled.
Rule "" disabled.
@@ -9765,7 +9710,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
275
- "" kuralı devre dışı bırakıldı.
+ Rule "" disabled.
Error toggling rule "".
@@ -9773,7 +9718,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
280
- Kuralı açarken veya kapatırken bir hata meydana geldi "".
+ Error toggling rule "".
Confirm delete mail rule
@@ -9781,7 +9726,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
291
- Posta hesabı kuralının silinmesini onaylayın
+ Confirm delete mail rule
This operation will permanently delete this mail rule.
@@ -9789,7 +9734,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
292
- Bu işlem, bu posta kuralını kalıcı olarak silecektir.
+ This operation will permanently delete this mail rule.
Deleted mail rule ""
@@ -9797,7 +9742,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
302
- "" posta kuralı silindi
+ Deleted mail rule ""
Error deleting mail rule "".
@@ -9805,7 +9750,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
313
- "" posta kuralı silinirken bir hata meydana geldi.
+ Error deleting mail rule "".
Permissions updated
@@ -9813,7 +9758,7 @@ tüm krite
src/app/components/manage/mail/mail.component.ts
337
- İzinler güncellendi
+ Permissions updated
Error updating permissions
@@ -9823,9 +9768,9 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
- İzinler güncellenirken bir hata meydana geldi
+ Error updating permissions
Processed Mail for
@@ -9833,7 +9778,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
2
- için postalar işlendi
+ Processed Mail for
No processed email messages found.
@@ -9841,7 +9786,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
20
- İşlenmiş posta mesajı bulunamadı.
+ No processed email messages found.
Received
@@ -9849,7 +9794,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
33
- Teslim Alındı
+ Received
Processed
@@ -9857,7 +9802,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html
34
- İşlendi
+ Processed
Processed mail(s) deleted
@@ -9865,7 +9810,7 @@ tüm krite
src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts
72
- İşlenmiş posta veya postalar silindi
+ Processed mail(s) deleted
Filter by:
@@ -9945,7 +9890,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.html
67
- {VAR_PLURAL, plural, =1 {Bir } other {Toplam }}
+ {VAR_PLURAL, plural, =1 {One } other { total }}
Automatic
@@ -9965,7 +9910,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
196
- başarıyla oluşturuldu.
+ Successfully created .
Error occurred while creating .
@@ -9973,7 +9918,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
201
- oluşturulurken bir hata meydana geldi.
+ Error occurred while creating .
Successfully updated "".
@@ -9981,7 +9926,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
216
- "" başarıyla güncellendi.
+ Successfully updated "".
Error occurred while saving .
@@ -9989,7 +9934,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
221
- kaydederken bir hata meydana geldi.
+ Error occurred while saving .
Associated documents will not be deleted.
@@ -9997,7 +9942,7 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
241
- İliştirilmiş belgeler silinmeyecektir.
+ Associated documents will not be deleted.
Error while deleting element
@@ -10005,39 +9950,39 @@ tüm krite
src/app/components/manage/management-list/management-list.component.ts
257
- Öğeyi silerken bir hata meydana geldi
+ Error while deleting element
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
- İzinler başarıyla güncellendi
+ Permissions updated successfully
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
- Bu işlem tüm nesneleri kalıcı olarak silecektir.
+ This operation will permanently delete all objects.
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
- Nesneler başarıyla silindi
+ Objects deleted successfully
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
- Nesneleri silerken bir hata ile karşılaşıldı
+ Error deleting objects
Customize the views of your documents.
@@ -10045,7 +9990,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
4
- Belgelerinizin görünümünü özelleştirin.
+ Customize the views of your documents.
Documents page size
@@ -10053,7 +9998,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
41
- Belgelerin sayfa sayısı
+ Documents page size
Display as
@@ -10061,7 +10006,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
44
- Olarak göster
+ Display as
Table
@@ -10069,7 +10014,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
46
- Tablo
+ Table
Small Cards
@@ -10077,7 +10022,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
47
- Küçük Kartlar
+ Small Cards
Large Cards
@@ -10085,7 +10030,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.html
48
- Büyük Kartlar
+ Large Cards
No saved views defined.
@@ -10109,7 +10054,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.ts
158
- Görünümler başarıyla kaydedildi.
+ Views saved successfully.
Error while saving views.
@@ -10117,7 +10062,7 @@ tüm krite
src/app/components/manage/saved-views/saved-views.component.ts
163
- Görünümleri kaydederken bir hata ile karşılaşıldı.
+ Error while saving views.
storage path
@@ -10141,7 +10086,7 @@ tüm krite
src/app/components/manage/storage-path-list/storage-path-list.component.ts
62
- "" kayıt dizinini gerçekten silmek istiyor musunuz?
+ Do you really want to delete the storage path ""?
tag
@@ -10149,7 +10094,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
45
- etiket
+ künye
tags
@@ -10157,7 +10102,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
46
- etiketler
+ künyeler
Do you really want to delete the tag ""?
@@ -10165,7 +10110,7 @@ tüm krite
src/app/components/manage/tag-list/tag-list.component.ts
61
- "" etiketini silmeyi gerçekten istiyor musunuz?
+ "" künyesini silmeyi gerçekten istiyor musunuz?
Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
@@ -10173,7 +10118,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
4
- İş akışlarını kullanarak, olaylar bir iş akışını tetiklediğinde Paperless-ngx'in davranışını özelleştirin.
+ Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
Add Workflow
@@ -10181,7 +10126,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
9
- İş Akışı Ekleyin
+ Add Workflow
No workflows defined.
@@ -10189,7 +10134,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.html
80
- Herhangi bir iş akışı tanımlanmamış.
+ No workflows defined.
Saved workflow "".
@@ -10197,7 +10142,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
90
- "" iş akışı kaydedildi.
+ Saved workflow "".
Error saving workflow.
@@ -10205,7 +10150,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
98
- İş akışını kaydederken bir hata ile karşılaşıldı.
+ Error saving workflow.
Confirm delete workflow
@@ -10213,7 +10158,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
131
- İş akışını silmeyi onayla
+ Confirm delete workflow
This operation will permanently delete this workflow.
@@ -10221,7 +10166,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
132
- Bu işlem iş akışını kalıcı olarak silecektir.
+ This operation will permanently delete this workflow.
Deleted workflow "".
@@ -10229,7 +10174,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
142
- "" iş akışı silindi.
+ Deleted workflow "".
Error deleting workflow "".
@@ -10237,7 +10182,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
149
- iş akışını silerken bir hata ile karşılaşıldı.
+ Error deleting workflow "".
Enabled workflow ""
@@ -10245,7 +10190,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
162
- "" iş akışı aktifleştirildi
+ Enabled workflow ""
Disabled workflow ""
@@ -10253,7 +10198,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
163
- "" iş akışı devre dışı bırakıldı
+ Disabled workflow ""
Error toggling workflow "".
@@ -10261,7 +10206,7 @@ tüm krite
src/app/components/manage/workflows/workflows.component.ts
170
- "" açılıp yada kapanırken bir hata ile karşılaşıldı.
+ Error toggling workflow "".
Not Found
@@ -10269,7 +10214,7 @@ tüm krite
src/app/components/not-found/not-found.component.html
6
- Bulunamadı
+ Not Found
Go to Dashboard
@@ -10277,7 +10222,7 @@ tüm krite
src/app/components/not-found/not-found.component.html
9
- Kontrol Paneline git
+ Go to Dashboard
Equal to
@@ -10285,7 +10230,7 @@ tüm krite
src/app/data/custom-field-query.ts
24
- Eşittir
+ Equal to
In
@@ -10293,7 +10238,7 @@ tüm krite
src/app/data/custom-field-query.ts
25
- İçinde
+ In
Is null
@@ -10301,7 +10246,7 @@ tüm krite
src/app/data/custom-field-query.ts
26
- Null'dur
+ Is null
Exists
@@ -10309,7 +10254,7 @@ tüm krite
src/app/data/custom-field-query.ts
27
- Mevcut
+ Exists
Contains
@@ -10317,7 +10262,7 @@ tüm krite
src/app/data/custom-field-query.ts
28
- İçeren
+ Contains
Contains (case-insensitive)
@@ -10325,7 +10270,7 @@ tüm krite
src/app/data/custom-field-query.ts
29
- İçeren (Büyük-küçük harf duyarsız)
+ Contains (case-insensitive)
Greater than
@@ -10333,7 +10278,7 @@ tüm krite
src/app/data/custom-field-query.ts
30
- Den büyük
+ Greater than
Greater than or equal to
@@ -10341,7 +10286,7 @@ tüm krite
src/app/data/custom-field-query.ts
31
- Büyüktür ya da eşittir
+ Greater than or equal to
Less than
@@ -10349,7 +10294,7 @@ tüm krite
src/app/data/custom-field-query.ts
32
- Den küçük
+ Less than
Less than or equal to
@@ -10357,7 +10302,7 @@ tüm krite
src/app/data/custom-field-query.ts
33
- Küçüktür veya eşittir
+ Less than or equal to
Range
@@ -10365,7 +10310,7 @@ tüm krite
src/app/data/custom-field-query.ts
34
- Aralık
+ Range
Boolean
@@ -10373,7 +10318,7 @@ tüm krite
src/app/data/custom-field.ts
19
- Evet/Hayır
+ Boolean
Date
@@ -10381,7 +10326,7 @@ tüm krite
src/app/data/custom-field.ts
23
- Tarih
+ Date
Integer
@@ -10389,7 +10334,7 @@ tüm krite
src/app/data/custom-field.ts
27
- Tam sayı
+ Integer
Number
@@ -10397,7 +10342,7 @@ tüm krite
src/app/data/custom-field.ts
31
- Sayı
+ Number
Monetary
@@ -10405,7 +10350,7 @@ tüm krite
src/app/data/custom-field.ts
35
- Parasal
+ Monetary
Text
@@ -10413,7 +10358,7 @@ tüm krite
src/app/data/custom-field.ts
39
- Metin
+ Text
Url
@@ -10421,7 +10366,7 @@ tüm krite
src/app/data/custom-field.ts
43
- Bağlantı
+ Url
Document Link
@@ -10429,7 +10374,7 @@ tüm krite
src/app/data/custom-field.ts
47
- Belge Bağlantısı
+ Document Link
Long Text
@@ -10437,7 +10382,7 @@ tüm krite
src/app/data/custom-field.ts
55
- Uzun Metin
+ Long Text
Search score
@@ -10542,7 +10487,7 @@ tüm krite
src/app/data/matching-model.ts
46
- Yok: Eşleştirmeyi devre dışı bırak
+ None: Disable matching
General Settings
@@ -10550,7 +10495,7 @@ tüm krite
src/app/data/paperless-config.ts
50
- Genel Ayarlar
+ General Settings
OCR Settings
@@ -10558,7 +10503,7 @@ tüm krite
src/app/data/paperless-config.ts
51
- OCR Ayarları
+ OCR Settings
Barcode Settings
@@ -10566,7 +10511,7 @@ tüm krite
src/app/data/paperless-config.ts
52
- Barkod Ayarları
+ Barcode Settings
Output Type
@@ -10574,7 +10519,7 @@ tüm krite
src/app/data/paperless-config.ts
76
- Çıktı Türü
+ Output Type
Language
@@ -10582,7 +10527,7 @@ tüm krite
src/app/data/paperless-config.ts
84
- Dil
+ Language
Mode
@@ -10590,7 +10535,7 @@ tüm krite
src/app/data/paperless-config.ts
98
- Mod
+ Mode
Skip Archive File
@@ -10598,7 +10543,7 @@ tüm krite
src/app/data/paperless-config.ts
106
- Arşiv Dosyasını Atla
+ Skip Archive File
Image DPI
@@ -10606,7 +10551,7 @@ tüm krite
src/app/data/paperless-config.ts
114
- Görüntü DPI
+ Image DPI
Clean
@@ -10614,7 +10559,7 @@ tüm krite
src/app/data/paperless-config.ts
121
- Sıfırdan İşle
+ Clean
Deskew
@@ -10622,7 +10567,7 @@ tüm krite
src/app/data/paperless-config.ts
129
- Deskew
+ Deskew
Rotate Pages
@@ -10630,7 +10575,7 @@ tüm krite
src/app/data/paperless-config.ts
136
- Sayfaları Döndür
+ Rotate Pages
Rotate Pages Threshold
@@ -10638,7 +10583,7 @@ tüm krite
src/app/data/paperless-config.ts
143
- Sayfalar Döndürmek İçin Gerekli Eşik Değeri
+ Rotate Pages Threshold
Max Image Pixels
@@ -10646,7 +10591,7 @@ tüm krite
src/app/data/paperless-config.ts
150
- Maksimum Görüntü Pikseli
+ Max Image Pixels
Color Conversion Strategy
@@ -10654,7 +10599,7 @@ tüm krite
src/app/data/paperless-config.ts
157
- Renk Dönüştürme Stratejisi
+ Color Conversion Strategy
OCR Arguments
@@ -10662,7 +10607,7 @@ tüm krite
src/app/data/paperless-config.ts
165
- OCR Argümanları
+ OCR Arguments
Application Logo
@@ -10670,7 +10615,7 @@ tüm krite
src/app/data/paperless-config.ts
172
- Sistemin Logosu
+ Application Logo
Application Title
@@ -10678,7 +10623,7 @@ tüm krite
src/app/data/paperless-config.ts
179
- Sistemin Başlığı
+ Application Title
Enable Barcodes
@@ -10686,7 +10631,7 @@ tüm krite
src/app/data/paperless-config.ts
186
- Barkodları Etkinleştir
+ Enable Barcodes
Enable TIFF Support
@@ -10694,7 +10639,7 @@ tüm krite
src/app/data/paperless-config.ts
193
- TIFF Desteğini Etkinleştir
+ Enable TIFF Support
Barcode String
@@ -10702,7 +10647,7 @@ tüm krite
src/app/data/paperless-config.ts
200
- Barkod Dizesi
+ Barcode String
Retain Split Pages
@@ -10710,7 +10655,7 @@ tüm krite
src/app/data/paperless-config.ts
207
- Bölünmüş Sayfaları Koru
+ Retain Split Pages
Enable ASN
@@ -10718,7 +10663,7 @@ tüm krite
src/app/data/paperless-config.ts
214
- ASN'yi etkinleştir
+ Enable ASN
ASN Prefix
@@ -10726,7 +10671,7 @@ tüm krite
src/app/data/paperless-config.ts
221
- ASN Ön Eki
+ ASN Prefix
Upscale
@@ -10734,7 +10679,7 @@ tüm krite
src/app/data/paperless-config.ts
228
- Çözünürlüğü yükseltme
+ Upscale
DPI
@@ -10742,7 +10687,7 @@ tüm krite
src/app/data/paperless-config.ts
235
- DPI
+ DPI
Max Pages
@@ -10750,7 +10695,7 @@ tüm krite
src/app/data/paperless-config.ts
242
- Maksimum Sayfa Sayısı
+ Max Pages
Enable Tag Detection
@@ -10758,7 +10703,7 @@ tüm krite
src/app/data/paperless-config.ts
249
- Etiket Algılamayı Etkinleştir
+ Enable Tag Detection
Tag Mapping
@@ -10766,7 +10711,7 @@ tüm krite
src/app/data/paperless-config.ts
256
- Etiket Eşlemesi
+ Tag Mapping
Warning: You have unsaved changes to your document(s).
@@ -10774,7 +10719,7 @@ tüm krite
src/app/guards/dirty-doc.guard.ts
16
- Uyarı: Belge(ler)inizde kaydedilmemiş değişiklikler var.
+ Warning: You have unsaved changes to your document(s).
Unsaved Changes
@@ -10830,7 +10775,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
29
- Kaydedilmiş görünümde kaydedilmemiş değişiklikleriniz var
+ You have unsaved changes to the saved view
Are you sure you want to close this saved view?
@@ -10838,7 +10783,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
33
- Bu kaydedilmiş görünümü kapatmak istediğinizden emin misiniz?
+ Are you sure you want to close this saved view?
Save and close
@@ -10846,7 +10791,7 @@ tüm krite
src/app/guards/dirty-saved-view.guard.ts
37
- Kaydet ve kapat
+ Save and close
You don't have permissions to do that
@@ -10854,7 +10799,7 @@ tüm krite
src/app/guards/permissions.guard.ts
34
- Bunu yapmak için gerekli izinlere sahip değilsiniz
+ You don't have permissions to do that
Last year
@@ -10870,7 +10815,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
15
- %s yıl önce
+ %s years ago
Last month
@@ -10886,7 +10831,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
20
- %s ay önce
+ %s months ago
Last week
@@ -10894,7 +10839,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
24
- Geçen hafta
+ Last week
%s weeks ago
@@ -10902,7 +10847,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
25
- %s hafta önce
+ %s weeks ago
%s days ago
@@ -10910,7 +10855,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
30
- %s gün önce
+ %s days ago
%s hour ago
@@ -10918,7 +10863,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
34
- %s saat önce
+ %s hour ago
%s hours ago
@@ -10926,7 +10871,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
35
- %s saat önce
+ %s hours ago
%s minute ago
@@ -10934,7 +10879,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
39
- %s dakika önce
+ %s minute ago
%s minutes ago
@@ -10942,7 +10887,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
40
- %s dakika önce
+ %s minutes ago
Just now
@@ -10950,7 +10895,7 @@ tüm krite
src/app/pipes/custom-date.pipe.ts
73
- Az önce
+ Just now
(no title)
@@ -10966,7 +10911,7 @@ tüm krite
src/app/services/open-documents.service.ts
124
- Belgede kaydetmemiş değişiklikleriniz var
+ You have unsaved changes to the document
Are you sure you want to close this document?
@@ -11030,7 +10975,7 @@ tüm krite
src/app/services/settings.service.ts
75
- Bulgarca
+ Bulgarian
Catalan
@@ -11110,7 +11055,7 @@ tüm krite
src/app/services/settings.service.ts
135
- Macarca
+ Hungarian
Italian
@@ -11126,7 +11071,7 @@ tüm krite
src/app/services/settings.service.ts
147
- Japonca
+ Japanese
Korean
@@ -11134,7 +11079,7 @@ tüm krite
src/app/services/settings.service.ts
153
- Korece
+ Korean
Luxembourgish
@@ -11166,7 +11111,7 @@ tüm krite
src/app/services/settings.service.ts
177
- Farsça
+ Persian
Polish
@@ -11262,7 +11207,7 @@ tüm krite
src/app/services/settings.service.ts
249
- Vietnamca
+ Vietnamese
Chinese Simplified
@@ -11278,7 +11223,7 @@ tüm krite
src/app/services/settings.service.ts
261
- Geleneksel Çince
+ Chinese Traditional
ISO 8601
@@ -11294,7 +11239,7 @@ tüm krite
src/app/services/settings.service.ts
603
- Ayarların veritabanına tek seferlik taşıma işlemi başarıyla tamamlandı!
+ Successfully completed one-time migratration of settings to the database!
Unable to migrate settings to the database, please try saving manually.
@@ -11302,7 +11247,7 @@ tüm krite
src/app/services/settings.service.ts
604
- Ayarları veritabanına taşıyamıyoruz, lütfen manuel olarak kaydetmeyi deneyin.
+ Unable to migrate settings to the database, please try saving manually.
You can restart the tour from the settings page.
@@ -11310,7 +11255,7 @@ tüm krite
src/app/services/settings.service.ts
677
- Ayarlar sayfasından turu yeniden başlatabilirsiniz.
+ You can restart the tour from the settings page.
Connecting...
@@ -11358,7 +11303,7 @@ tüm krite
src/app/services/websocket-status.service.ts
25
- Belge zaten mevcut. Not: Mevcut belge çöp kutusunda.
+ Document already exists. Note: existing document is in the trash.
Document with ASN already exists.
@@ -11366,7 +11311,7 @@ tüm krite
src/app/services/websocket-status.service.ts
26
- ASN içeren belge zaten mevcut.
+ Document with ASN already exists.
Document with ASN already exists. Note: existing document is in the trash.
@@ -11374,7 +11319,7 @@ tüm krite
src/app/services/websocket-status.service.ts
27
- ASN içeren belge zaten mevcut. Not: mevcut belge çöp kutusunda.
+ Document with ASN already exists. Note: existing document is in the trash.
File not found.
@@ -11391,7 +11336,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ı mevcut değil.
+ Tüketim öncesi komut dosyası yok.
Error while executing pre-consume script.
@@ -11400,7 +11345,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 bir hata meydana geldi.
+ Tüketim öncesi komut dosyasını işlerken hata oluştu.
Post-consume script does not exist.
@@ -11409,7 +11354,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ı mevcut değil.
+ Tüketim sonrası komut dosyası yok.
Error while executing post-consume script.
@@ -11418,7 +11363,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 bir hata meydana geldi.
+ Tüketim sonrası komut dosyasını işlerken hata oluştu.
Received new file.
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 1ea46f476..cde42194c 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Закрити
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
Попередній
@@ -30,7 +30,7 @@
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
+ node_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
198
Наступний
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
Оберіть місяць
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
Натисніть для перегляду.
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx може автоматично перевіряти наявність оновлень
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
Як це працює?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
Доступне оновлення
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
Представлення бічної панелі оновлено
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
Помилка оновлення представлень бічної панелі
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
Сталася помилка при збереженні налаштувань для перевірки оновлень.
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
Вірно
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
Невірно
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
Шукати в документації...
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
Не
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
Додати запит
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
Додати вираз
@@ -3830,6 +3798,18 @@
Відносні дати
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ зараз
+
From
@@ -3878,19 +3858,11 @@
Додано
-
- 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
- 81
+ 76
Протягом одного тижня
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
Протягом одного місяця
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
Протягом трьох місяців
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
Протягом одного року
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
Цього року
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
Цього місяця
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
Вчора
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
Нечутливий до регістру
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
Призначити тип документа
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
Призначити кореспондента
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Ел. пошта
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
Створити новий обліковий запис користувача
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
Редагувати обліковий запис
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP вимкнено
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp deactivation failed
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
Тип тригера
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
Set scheduled trigger offset and which date field to use.
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
Offset days
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
Positive values will trigger after the date, negative values before.
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
Відносно
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Користувацьке поле
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
Користувацьке поле для використання дати.
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Повторюваний
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
Trigger is recurring.
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Recurring interval days
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
Repeat the trigger every n days.
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
Тригер для документів, які збігаються усі фільтри, зазначені нижче.
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Фільтрувати назви файлів
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру.
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
Джерела фільтрації
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Шлях фільтра
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
Застосовувати до документів, які відповідають цьому шляху. Допускаються символи підставляння, позначені як *. Нормалізовано за регістром.</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Правило фільтрування пошти
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
Застосувати до документів, що обслуговуються за допомогою цього правила пошти.
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
Алгоритм розпізнавання вмісту
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
Шаблон відповідності вмісту
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
Advanced Filters
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
Add filter
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
No advanced workflow filters defined.
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
Complete the custom field query configuration.
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
Тип дії
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Призначити назву
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
Може містити деякі заповнювачі, дивись <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацію</a>.
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
Призначити теги
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
Призначити шлях до сховища
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
Призначити користувацькі поля
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
Призначити власника
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
Призначити дозволи на перегляд
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
Призначити права на редагування
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
Вилучити позначки
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
Видалити всі
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
Видалити всіх кореспондентів
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
Видалити всі типи документів
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
Видалити всі шляхи зберігання
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
Вилучити власне поле
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
Видалити власників
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
Вилучити дозволи
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
Переглянути дозволи
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
Редагувати дозволи
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
Тема електронного листа
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
Текст листа
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
Одержувачі електронної пошти
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
Вкласти документ
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
URL-адреса вебхука
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
Використовувати параметри для тіла webhook
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
Send webhook payload as JSON
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Параметри вебхука
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Тіло вебхука
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Заголовки веб-хуків
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
Включити документ
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
Не призначено
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
Відкрити фільтр
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
Обліковий запис успішно оновлено
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
Помилка збереження профілю
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
Помилка генерації токена авторизації
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
Помилка від'єднання акаунта соціальної мережі
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
Помилка отримання налаштувань TOTP
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP успішно активовано
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
Помилка активації TOTP
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP успішно деактивовано
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
Помилка деактивації TOTP
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
Print failed.
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
Error loading document for printing.
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
An error occurred loading tiff:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
Власні поля
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
Включити:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
Архівовані файли
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
Оригінальні файли
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
Використовувати відформатовану назву файлу
@@ -8730,14 +8670,6 @@
Вибрати всі
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8754,6 +8686,18 @@
Немає
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ Показувати
+
Sort
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
Назва та вміст
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
Тип файлу
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
Більше схожих
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
дорівнює
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
не заповнено
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
заповнено
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
більше ніж
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
менше ніж
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
Correspondent:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
Без кореспондента
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
Document type:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
Без типу документа
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
Storage path:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
Без шляху зберігання
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
Tag:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
Без жодного тегу
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
Custom fields query
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
Назва:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
АСН:
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
Власник:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
Власник не в:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
Без власника
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
Помилка оновлення прав доступу
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
Права доступу успішно оновлено
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
Ця операція остаточно видалить всі об'єкти.
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
Об'єкти успішно видалені
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
Помилка видалення об'єктів
diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf
index ed5c05b71..ffdaa3ed4 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
Đóng
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
@@ -37,7 +37,7 @@
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
+ node_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
198
@@ -47,11 +47,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
@@ -109,7 +109,7 @@
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
本月
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
昨天
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
忽略大小写
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
分配文档类型
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
分配联系人
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
Email
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
创建新用户
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
编辑用户
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
Totp 已停用
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
Totp 停用失败
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
触发类型
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
设置计划的触发器偏移量以及使用哪个日期字段。
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
偏移天数
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
正值将在日期之后触发,负值则在日期之前触发。
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
相对于
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
自定义字段
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
自定义日期字段。
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
定期
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
触发器循环中。
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
循环间隔天数
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
每n天重复触发器。
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
触发匹配下面指定的 所有 过滤器的文档。
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
筛选文件名
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
应用于匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
筛选源
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
筛选路径
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
筛选邮件规则
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
应用于通过此邮件规则消费的文档。
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
内容匹配算法
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
内容匹配模式
@@ -5274,7 +5214,7 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
高级筛选
@@ -5282,7 +5222,7 @@
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
添加筛选条件
@@ -5290,7 +5230,7 @@
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
未定义高级工作流筛选条件。
@@ -5298,7 +5238,7 @@
Complete the custom field query configuration.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 224,226
+ 222,224
完成自定义字段查询配置。
@@ -5306,7 +5246,7 @@
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
操作类型
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
指定标题
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
可以包含一些占位符,请参阅 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>文档</a>。
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
分配标签
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
指定存储路径
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
分配自定义字段
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
分配用户
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
分配查看权限
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
分配编辑权限
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
移除标签
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
移除全部
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
移除所有通讯员
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
移除所有文档类型
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
移除存储路径
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
移除自定义字段
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
移除所有者
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
移除权限
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
查看权限
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
编辑权限
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
邮件主题
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
邮件正文
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
邮件收件人
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
附加文件
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook 链接
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
使用参数作为webhook负载
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
以 JSON 格式发送网络钩子的有效负载 (webhook payload)
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook参数
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook负载
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook标头
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
添加文档
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未分配
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
开启过滤
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
帐户信息更新成功
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
保存帐户信息时发生错误
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
生成验证令牌时发生错误
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
断开社交账户时发生错误
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
獲取TOTP 設定時出錯
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP 啟動成功
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
啟動TOTP時錯誤
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP 停用成功
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
停用TOTP時錯誤
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
打印失败。
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
加载打印文档时出错。
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
加载内容时发生错误:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
自定义字段
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
包含:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
归档文件
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
原始文件
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
使用格式化文件名
@@ -8729,14 +8669,6 @@
全选
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- Select:
-
None
@@ -8753,6 +8685,18 @@
无
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ 显示列
+
Sort
@@ -8853,7 +8797,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9073,7 +9017,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
标题 & 内容
@@ -9081,7 +9025,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
文件类型
@@ -9089,7 +9033,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
更多
@@ -9097,7 +9041,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
等于
@@ -9105,7 +9049,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
为空
@@ -9113,7 +9057,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
不为空
@@ -9121,7 +9065,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
高于
@@ -9129,7 +9073,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
低于
@@ -9137,7 +9081,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
联系人:
@@ -9145,7 +9089,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
没有联系人
@@ -9153,7 +9097,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
文档类型:
@@ -9161,7 +9105,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
没有文档类型
@@ -9169,7 +9113,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
存储路径:
@@ -9177,7 +9121,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
没有存储路径
@@ -9185,7 +9129,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
标签:
@@ -9193,7 +9137,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
没有任何标签
@@ -9201,7 +9145,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
自定义字段查询
@@ -9209,7 +9153,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
标题:
@@ -9217,7 +9161,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
ASN:
@@ -9225,7 +9169,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
所有者:
@@ -9233,7 +9177,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
所有者不在:
@@ -9241,7 +9185,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
没有所有者
@@ -9821,7 +9765,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
更新权限时发生错误
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
权限更新成功
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
此操作将永久删除所有对象。
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
对象删除成功
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
删除对象时发生错误
diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf
index 1eaac6ef3..859391145 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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts
+ node_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
50
關閉
@@ -13,7 +13,7 @@
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
+ node_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
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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts
+ node_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
157,159
上一個
@@ -30,7 +30,7 @@
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
+ node_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
198
下一個
@@ -38,11 +38,11 @@
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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/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
+ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts
13
選取月份
@@ -90,7 +90,7 @@
@@ -3186,7 +3154,7 @@
Click to view.
src/app/components/app-frame/app-frame.component.html
- 319
+ 317
點擊以顯示。
@@ -3194,7 +3162,7 @@
Paperless-ngx can automatically check for updates
src/app/components/app-frame/app-frame.component.html
- 323
+ 321
Paperless-ngx 可以自動檢查更新
@@ -3202,7 +3170,7 @@
How does this work?
src/app/components/app-frame/app-frame.component.html
- 330,332
+ 328,330
這是怎麼運作的?
@@ -3210,7 +3178,7 @@
Update available
src/app/components/app-frame/app-frame.component.html
- 343
+ 341
有可用更新
@@ -3218,7 +3186,7 @@
Sidebar views updated
src/app/components/app-frame/app-frame.component.ts
- 264
+ 251
側邊欄顯示方式已更新
@@ -3226,7 +3194,7 @@
Error updating sidebar views
src/app/components/app-frame/app-frame.component.ts
- 267
+ 254
更新側邊欄顯示方式時發生錯誤
@@ -3234,7 +3202,7 @@
An error occurred while saving update checking settings.
src/app/components/app-frame/app-frame.component.ts
- 288
+ 275
儲存檢查更新設定時發生錯誤。
@@ -3302,7 +3270,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 117
+ 115
src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -3666,7 +3634,7 @@
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 111
+ 106
src/app/components/common/input/date/date.component.html
@@ -3718,11 +3686,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 95
+ 94
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 101
+ 100
是
@@ -3734,11 +3702,11 @@
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 96
+ 95
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 102
+ 101
否
@@ -3746,11 +3714,11 @@
Search docs...
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 70
+ 69
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 118
+ 117
搜尋文件⋯
@@ -3758,7 +3726,7 @@
Any
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 150
+ 149
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3770,7 +3738,7 @@
All
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 152
+ 151
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -3798,7 +3766,7 @@
Not
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 155
+ 154
不是
@@ -3806,7 +3774,7 @@
Add query
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 174
+ 173
新增查詢
@@ -3814,7 +3782,7 @@
Add expression
src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html
- 177
+ 176
新增表達式
@@ -3830,6 +3798,18 @@
相對日期
+
+ now
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 29
+
+
+ src/app/components/common/dates-dropdown/dates-dropdown.component.html
+ 105
+
+ 現在
+
From
@@ -3878,19 +3858,11 @@
新增日期
-
- 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
- 81
+ 76
1 週內
@@ -3898,7 +3870,7 @@
Within 1 month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 86
+ 81
1 個月內
@@ -3906,7 +3878,7 @@
Within 3 months
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 91
+ 86
3 個月內
@@ -3914,7 +3886,7 @@
Within 1 year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 96
+ 91
1 年內
@@ -3922,7 +3894,7 @@
This year
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 101
+ 96
今年
@@ -3930,7 +3902,7 @@
This month
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 106
+ 101
本月
@@ -3938,7 +3910,7 @@
Yesterday
src/app/components/common/dates-dropdown/dates-dropdown.component.ts
- 116
+ 111
src/app/pipes/custom-date.pipe.ts
@@ -3946,38 +3918,6 @@
昨天
-
- 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
@@ -4038,7 +3978,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 173
+ 171
不區分大小寫
@@ -4510,7 +4450,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 265
+ 263
指派文件類型
@@ -4530,7 +4470,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 266
+ 264
指派關聯方
@@ -4542,7 +4482,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 113
+ 111
src/app/components/common/system-status-dialog/system-status-dialog.component.html
@@ -4906,7 +4846,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 101
+ 100
電子郵件
@@ -5014,7 +4954,7 @@
Create new user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 72
+ 70
建立新使用者帳號
@@ -5022,7 +4962,7 @@
Edit user account
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 76
+ 74
編輯使用者帳號
@@ -5030,7 +4970,7 @@
Totp deactivated
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 132
+ 130
TOTP 已停用
@@ -5038,11 +4978,11 @@
Totp deactivation failed
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 135
+ 133
src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts
- 140
+ 138
TOTP 停用失敗
@@ -5106,7 +5046,7 @@
Trigger type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 123
+ 121
觸發基準
@@ -5114,7 +5054,7 @@
Set scheduled trigger offset and which date field to use.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 125
+ 123
設定排程觸發器的日期調整,以及要使用的日期欄位。
@@ -5122,7 +5062,7 @@
Offset days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 130
+ 128
調整日期
@@ -5130,7 +5070,7 @@
Positive values will trigger after the date, negative values before.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 134
+ 132
正數值將於日期「之後」觸發,負數值將於日期「之前」觸發。
@@ -5138,7 +5078,7 @@
Relative to
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 139
+ 137
基於
@@ -5146,7 +5086,7 @@
Custom field
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
自訂欄位
@@ -5154,7 +5094,7 @@
Custom field to use for date.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 143
+ 141
用於調整日期的自訂欄位。
@@ -5162,7 +5102,7 @@
Recurring
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
重複執行
@@ -5170,7 +5110,7 @@
Trigger is recurring.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 149
+ 147
重複執行觸發器。
@@ -5178,7 +5118,7 @@
Recurring interval days
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
重複執行間隔(天)
@@ -5186,7 +5126,7 @@
Repeat the trigger every n days.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 153
+ 151
每隔 n 天重複執行觸發器。
@@ -5194,7 +5134,7 @@
Trigger for documents that match all filters specified below.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 158
+ 156
對符合下列所有篩選條件的文件觸發動作。
@@ -5202,7 +5142,7 @@
Filter filename
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
篩選檔案名稱
@@ -5210,7 +5150,7 @@
Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 161
+ 159
套用於符合此檔案名稱的文件。可使用萬用字元,如 *.pdf 或 *invoice*。不區分大小寫。
@@ -5218,7 +5158,7 @@
Filter sources
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 163
+ 161
篩選來源
@@ -5226,7 +5166,7 @@
Filter path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
篩選路徑
@@ -5234,7 +5174,7 @@
Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 164
+ 162
套用於符合此路徑的文件。可使用萬用字元,如 *。大小寫已正規化。</a>
@@ -5242,7 +5182,7 @@
Filter mail rule
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
篩選郵件規則
@@ -5250,7 +5190,7 @@
Apply to documents consumed via this mail rule.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 165
+ 163
套用於以此郵件規則處理的文件。
@@ -5258,7 +5198,7 @@
Content matching algorithm
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 168
+ 166
內容比對演算法
@@ -5266,7 +5206,7 @@
Content matching pattern
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 170
+ 168
內容比對模式
@@ -5274,39 +5214,39 @@
Advanced Filters
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 183
+ 181
- 進階篩選條件
+ Advanced Filters
Add filter
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 190
+ 188
- 新增篩選條件
+ Add filter
No advanced workflow filters defined.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 195
+ 193
- 未定義進階工作流程篩選條件。
+ 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
+ 222,224
- 完成自訂欄位查詢設定。
+ Complete the custom field query configuration.
Action type
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 258
+ 256
動作類型
@@ -5314,7 +5254,7 @@
Assign title
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
指派標題
@@ -5322,7 +5262,7 @@
Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 263
+ 261
可包含預留位置,詳見<a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>說明文件</a>。
@@ -5330,7 +5270,7 @@
Assign tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 264
+ 262
指派標籤
@@ -5338,7 +5278,7 @@
Assign storage path
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 267
+ 265
指派儲存路徑
@@ -5346,7 +5286,7 @@
Assign custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 268
+ 266
指派自訂欄位
@@ -5354,7 +5294,7 @@
Assign owner
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 272
+ 270
指派擁有者
@@ -5362,7 +5302,7 @@
Assign view permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 274
+ 272
指派檢視權限
@@ -5370,7 +5310,7 @@
Assign edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 293
+ 291
指派編輯權限
@@ -5378,7 +5318,7 @@
Remove tags
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 320
+ 318
移除標籤
@@ -5386,31 +5326,31 @@
Remove all
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 321
+ 319
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 327
+ 325
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 333
+ 331
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 339
+ 337
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 345
+ 343
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 352
+ 350
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 358
+ 356
移除全部
@@ -5418,7 +5358,7 @@
Remove correspondents
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 326
+ 324
移除關聯方
@@ -5426,7 +5366,7 @@
Remove document types
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 332
+ 330
移除文件類型
@@ -5434,7 +5374,7 @@
Remove storage paths
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 338
+ 336
移除儲存路徑
@@ -5442,7 +5382,7 @@
Remove custom fields
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 344
+ 342
移除自訂欄位
@@ -5450,7 +5390,7 @@
Remove owners
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 351
+ 349
移除擁有者
@@ -5458,7 +5398,7 @@
Remove permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 357
+ 355
移除權限
@@ -5466,7 +5406,7 @@
View permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 360
+ 358
檢視權限
@@ -5474,7 +5414,7 @@
Edit permissions
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 379
+ 377
編輯權限
@@ -5482,7 +5422,7 @@
Email subject
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 407
+ 405
電子郵件主旨
@@ -5490,7 +5430,7 @@
Email body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 408
+ 406
電子郵件正文
@@ -5498,7 +5438,7 @@
Email recipients
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 409
+ 407
電子郵件收件者
@@ -5506,7 +5446,7 @@
Attach document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 410
+ 408
附加文件
@@ -5514,7 +5454,7 @@
Webhook url
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 418
+ 416
Webhook URL
@@ -5522,7 +5462,7 @@
Use parameters for webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 420
+ 418
使用 Webhook Body 的參數
@@ -5530,7 +5470,7 @@
Send webhook payload as JSON
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 421
+ 419
以 JSON 傳送 Webhook Payload
@@ -5538,7 +5478,7 @@
Webhook params
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 424
+ 422
Webhook 參數
@@ -5546,7 +5486,7 @@
Webhook body
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 426
+ 424
Webhook Body
@@ -5554,7 +5494,7 @@
Webhook headers
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 428
+ 426
Webhook 標頭
@@ -5562,7 +5502,7 @@
Include document
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
- 429
+ 427
包含文件
@@ -5680,7 +5620,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
203
- 標籤包含
+ Has any of these tags
Has all of these tags
@@ -5688,7 +5628,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
210
- 標籤符合
+ Has all of these tags
Does not have these tags
@@ -5696,7 +5636,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
217
- 標籤不包含
+ Does not have these tags
Has correspondent
@@ -5712,7 +5652,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
232
- 關聯方不包含
+ Does not have correspondents
Has document type
@@ -5728,7 +5668,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
248
- 文件類型不包含
+ Does not have document types
Has storage path
@@ -5744,7 +5684,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
264
- 儲存路徑不包含
+ Does not have storage paths
Matches custom field query
@@ -5752,7 +5692,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts
272
- 符合自訂欄位查詢
+ Matches custom field query
Create new workflow
@@ -5776,7 +5716,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
2,6
- {VAR_PLURAL, plural, =1 {以郵件傳送一份文件} other {以郵件傳送 份文件}}
+ {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}}
Email address(es)
@@ -5828,7 +5768,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.html
37
- 有些電子郵件伺服器可能會拒絕含有大型附件的郵件。
+ Some email servers may reject messages with large attachments.
Email sent
@@ -5844,7 +5784,7 @@
src/app/components/common/email-document-dialog/email-document-dialog.component.ts
69
- 以電子郵件傳送文件時發生錯誤
+ Error emailing documents
Error emailing document
@@ -5918,7 +5858,7 @@
Not assigned
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 95
+ 82
Filter drop down element to filter for documents with no correspondent/type/tag assigned
未被指派的
@@ -5927,7 +5867,7 @@
Open filter
src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
- 767
+ 562
開啟 篩選器
@@ -6007,7 +5947,7 @@
src/app/components/common/input/select/select.component.html
- 61
+ 60
src/app/components/common/input/tags/tags.component.html
@@ -6144,11 +6084,11 @@
src/app/components/common/tag/tag.component.html
- 20
+ 14
src/app/components/common/tag/tag.component.html
- 23
+ 17
src/app/pipes/object-name.pipe.ts
@@ -6680,7 +6620,7 @@
Profile updated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 193
+ 192
設定檔更新成功
@@ -6688,7 +6628,7 @@
Error saving profile
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 207
+ 206
儲存設定檔時發生錯誤
@@ -6696,7 +6636,7 @@
Error generating auth token
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 225
+ 223
產生驗證 Token 時發生錯誤
@@ -6704,7 +6644,7 @@
Error disconnecting social account
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 250
+ 248
連接社群帳號時發生錯誤
@@ -6712,7 +6652,7 @@
Error fetching TOTP settings
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 269
+ 267
擷取 TOTP 時發生錯誤
@@ -6720,7 +6660,7 @@
TOTP activated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 290
+ 288
TOTP 啟用成功
@@ -6728,11 +6668,11 @@
Error activating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 292
+ 290
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 298
+ 296
啟用 TOTP 時發生錯誤
@@ -6740,7 +6680,7 @@
TOTP deactivated successfully
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 314
+ 312
TOTP 停用成功
@@ -6748,11 +6688,11 @@
Error deactivating TOTP
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 316
+ 314
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts
- 321
+ 319
停用 TOTP 時發生錯誤
@@ -7428,7 +7368,7 @@
src/app/components/document-list/document-list.component.html
27
- 目前頁面
+ 頁面
of
@@ -7542,7 +7482,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 195
+ 179
src/app/data/document.ts
@@ -8066,7 +8006,7 @@
Print failed.
src/app/components/document-detail/document-detail.component.ts
- 1460
+ 1455
列印失敗。
@@ -8074,7 +8014,7 @@
Error loading document for printing.
src/app/components/document-detail/document-detail.component.ts
- 1472
+ 1463
載入列印文件時發生錯誤
@@ -8082,11 +8022,11 @@
An error occurred loading tiff:
src/app/components/document-detail/document-detail.component.ts
- 1537
+ 1528
src/app/components/document-detail/document-detail.component.ts
- 1541
+ 1532
讀取 TIFF 檔時發生錯誤:
@@ -8166,7 +8106,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 203
+ 187
自訂欄位
@@ -8206,7 +8146,7 @@
Include:
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 123
+ 121
包含:
@@ -8214,7 +8154,7 @@
Archived files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 127
+ 125
封存檔案
@@ -8222,7 +8162,7 @@
Original files
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 131
+ 129
原始檔案
@@ -8230,7 +8170,7 @@
Use formatted filename
src/app/components/document-list/bulk-editor/bulk-editor.component.html
- 136
+ 134
使用格式化檔案名稱
@@ -8660,7 +8600,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
20
- 開關標籤篩選條件
+ 開關標籤篩選器
Toggle correspondent filter
@@ -8668,7 +8608,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
43
- 開關關聯方篩選條件
+ 開關關聯方篩選器
Toggle document type filter
@@ -8676,7 +8616,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
59
- 開關文件類型篩選條件
+ 開關文件類型篩選器
Toggle storage path filter
@@ -8684,7 +8624,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
66
- 開關儲存路徑篩選條件
+ 開關儲存路徑篩選器
Select
@@ -8716,7 +8656,7 @@
src/app/components/document-list/document-list.component.ts
315
- 選取目前頁面
+ 選取頁面
Select all
@@ -8730,14 +8670,6 @@
選取全部
-
- Select:
-
- src/app/components/document-list/document-list.component.html
- 18
-
- 選取:
-
None
@@ -8754,6 +8686,18 @@
無
+
+ Show
+
+ src/app/components/document-list/document-list.component.html
+ 37
+
+
+ src/app/components/manage/saved-views/saved-views.component.html
+ 52
+
+ 顯示
+
Sort
@@ -8816,7 +8760,7 @@
src/app/components/document-list/document-list.component.html
143
- (已套用篩選條件)
+ (已套用篩選器)
Reset filters
@@ -8828,7 +8772,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
107
- 重置篩選條件
+ 重置篩選器
Error while loading documents
@@ -8854,7 +8798,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 200
+ 184
src/app/data/document.ts
@@ -9012,7 +8956,7 @@
src/app/components/document-list/document-list.component.ts
296
- 重置篩條件/選項
+ 重置篩選器/選項
Open first [selected] document
@@ -9074,7 +9018,7 @@
Title & content
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 198
+ 182
標題與內容
@@ -9082,7 +9026,7 @@
File type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 205
+ 189
檔案類型
@@ -9090,7 +9034,7 @@
More like
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 214
+ 198
相似於
@@ -9098,7 +9042,7 @@
equals
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 220
+ 204
等於
@@ -9106,7 +9050,7 @@
is empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 224
+ 208
為空白
@@ -9114,7 +9058,7 @@
is not empty
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 228
+ 212
不為空白
@@ -9122,7 +9066,7 @@
greater than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 232
+ 216
大於
@@ -9130,7 +9074,7 @@
less than
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 236
+ 220
小於
@@ -9138,7 +9082,7 @@
Correspondent:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 277,281
+ 261,265
關聯方:
@@ -9146,7 +9090,7 @@
Without correspondent
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 283
+ 267
沒有關聯方
@@ -9154,7 +9098,7 @@
Document type:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 289,293
+ 273,277
文件類型:
@@ -9162,7 +9106,7 @@
Without document type
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 295
+ 279
沒有文件類型
@@ -9170,7 +9114,7 @@
Storage path:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 301,305
+ 285,289
儲存路徑:
@@ -9178,7 +9122,7 @@
Without storage path
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 307
+ 291
沒有儲存路徑
@@ -9186,7 +9130,7 @@
Tag:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 311,313
+ 295,297
標籤:
@@ -9194,7 +9138,7 @@
Without any tag
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 317
+ 301
沒有任何標籤
@@ -9202,7 +9146,7 @@
Custom fields query
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 321
+ 305
自訂欄位查詢
@@ -9210,7 +9154,7 @@
Title:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 324
+ 308
標題:
@@ -9218,7 +9162,7 @@
ASN:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 327
+ 311
封存序號 (ANS):
@@ -9226,7 +9170,7 @@
Owner:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 330
+ 314
擁有者:
@@ -9234,7 +9178,7 @@
Owner not in:
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 333
+ 317
擁有者不包含:
@@ -9242,7 +9186,7 @@
Without an owner
src/app/components/document-list/filter-editor/filter-editor.component.ts
- 336
+ 320
沒有擁有者
@@ -9822,7 +9766,7 @@
src/app/components/manage/management-list/management-list.component.ts
- 349
+ 343
更新權限時發生錯誤
@@ -10010,7 +9954,7 @@
Permissions updated successfully
src/app/components/manage/management-list/management-list.component.ts
- 342
+ 336
權限更新成功
@@ -10018,7 +9962,7 @@
This operation will permanently delete all objects.
src/app/components/manage/management-list/management-list.component.ts
- 363
+ 357
將永久刪除全部的項目。
@@ -10026,7 +9970,7 @@
Objects deleted successfully
src/app/components/manage/management-list/management-list.component.ts
- 377
+ 371
項目刪除成功
@@ -10034,7 +9978,7 @@
Error deleting objects
src/app/components/manage/management-list/management-list.component.ts
- 383
+ 377
刪除項目時發生錯誤
diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py
index 48cd57311..3a0ffd9fb 100644
--- a/src/documents/file_handling.py
+++ b/src/documents/file_handling.py
@@ -99,29 +99,6 @@ 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,
*,
@@ -131,6 +108,28 @@ 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 54f3c1fa0..87274f9fa 100644
--- a/src/documents/filters.py
+++ b/src/documents/filters.py
@@ -92,12 +92,6 @@ class TagFilterSet(FilterSet):
"name": CHAR_KWARGS,
}
- is_root = BooleanFilter(
- label="Is root tag",
- field_name="tn_parent",
- lookup_expr="isnull",
- )
-
class DocumentTypeFilterSet(FilterSet):
class Meta:
@@ -160,7 +154,6 @@ 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:
@@ -215,7 +208,6 @@ 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,
@@ -246,7 +238,6 @@ 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 6b994ac8c..90cbb8000 100644
--- a/src/documents/index.py
+++ b/src/documents/index.py
@@ -13,7 +13,6 @@ 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
@@ -288,75 +287,15 @@ 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()
@@ -376,33 +315,21 @@ 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 = [
- (
- (hit[0] / self.first_score) if self.first_score else None,
- hit[1],
- )
- for hit in page.results.top_n
- ]
+ 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,
+ ),
+ )
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(
@@ -534,84 +461,32 @@ 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()
- # 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)[\"']?"
+ 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)[\"']?"
def repl(m):
- 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
+ field, keyword = m.group(1), m.group(2)
+ start, end = ranges[keyword]
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, flags=re.IGNORECASE)
+ return re.sub(pattern, repl, query_string)
diff --git a/src/documents/mail.py b/src/documents/mail.py
index 21bf03c7a..240b41e18 100644
--- a/src/documents/mail.py
+++ b/src/documents/mail.py
@@ -1,26 +1,23 @@
from __future__ import annotations
-from dataclasses import dataclass
from email import message_from_bytes
-from pathlib import Path
+from typing import TYPE_CHECKING
from django.conf import settings
from django.core.mail import EmailMessage
from filelock import FileLock
-
-@dataclass(frozen=True)
-class EmailAttachment:
- path: Path
- mime_type: str
- friendly_name: str
+if TYPE_CHECKING:
+ from documents.models import Document
def send_email(
subject: str,
body: str,
to: list[str],
- attachments: list[EmailAttachment],
+ attachments: list[Document],
+ *,
+ use_archive: bool,
) -> int:
"""
Send an email with attachments.
@@ -29,7 +26,8 @@ def send_email(
subject: Email subject
body: Email body text
to: List of recipient email addresses
- attachments: List of attachments
+ attachments: List of documents to attach (the list may be empty)
+ use_archive: Whether to attach archive versions when available
Returns:
Number of emails sent
@@ -46,41 +44,44 @@ def send_email(
# Something could be renaming the file concurrently so it can't be attached
with FileLock(settings.MEDIA_LOCK):
- for attachment in attachments:
- filename = _get_unique_filename(
- attachment.friendly_name,
- used_filenames,
+ for document in attachments:
+ attachment_path = (
+ document.archive_path
+ if use_archive and document.has_archive_version
+ else document.source_path
)
- used_filenames.add(filename)
- with attachment.path.open("rb") as f:
+ friendly_filename = _get_unique_filename(
+ document,
+ used_filenames,
+ archive=use_archive and document.has_archive_version,
+ )
+ used_filenames.add(friendly_filename)
+
+ with attachment_path.open("rb") as f:
content = f.read()
- if attachment.mime_type == "message/rfc822":
+ if document.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=filename,
+ filename=friendly_filename,
content=content,
- mimetype=attachment.mime_type,
+ mimetype=document.mime_type,
)
return email.send()
-def _get_unique_filename(friendly_name: str, used_names: set[str]) -> str:
+def _get_unique_filename(doc: Document, used_names: set[str], *, archive: bool) -> str:
"""
- Constructs a unique friendly filename for the given document, append a counter if needed.
+ Constructs a unique friendly filename for the given document.
+
+ The filename might not be unique enough, so a counter is appended if needed.
"""
- if friendly_name not in used_names:
- return friendly_name
-
- stem = Path(friendly_name).stem
- suffix = "".join(Path(friendly_name).suffixes)
-
- counter = 1
+ counter = 0
while True:
- filename = f"{stem}_{counter:02}{suffix}"
+ filename = doc.get_public_filename(archive=archive, counter=counter)
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 3e614c6a6..282f5c48e 100644
--- a/src/documents/management/commands/document_importer.py
+++ b/src/documents/management/commands/document_importer.py
@@ -48,13 +48,12 @@ if settings.AUDIT_LOG_ENABLED:
@contextmanager
-def disable_signal(sig, receiver, sender, *, weak: bool | None = None) -> Generator:
+def disable_signal(sig, receiver, sender) -> Generator:
try:
sig.disconnect(receiver=receiver, sender=sender)
yield
finally:
- kwargs = {"weak": weak} if weak is not None else {}
- sig.connect(receiver=receiver, sender=sender, **kwargs)
+ sig.connect(receiver=receiver, sender=sender)
class Command(CryptMixin, BaseCommand):
@@ -259,19 +258,16 @@ class Command(CryptMixin, BaseCommand):
post_save,
receiver=update_filename_and_move_files,
sender=Document,
- weak=False,
),
disable_signal(
m2m_changed,
receiver=update_filename_and_move_files,
sender=Document.tags.through,
- weak=False,
),
disable_signal(
post_save,
receiver=update_filename_and_move_files,
sender=CustomFieldInstance,
- weak=False,
),
disable_signal(
post_save,
diff --git a/src/documents/migrations/1073_migrate_workflow_title_jinja.py b/src/documents/migrations/1073_migrate_workflow_title_jinja.py
index 9d80a277f..3f5689629 100644
--- a/src/documents/migrations/1073_migrate_workflow_title_jinja.py
+++ b/src/documents/migrations/1073_migrate_workflow_title_jinja.py
@@ -3,6 +3,7 @@ import logging
from django.db import migrations
from django.db import models
+from django.db import transaction
from documents.templating.utils import convert_format_str_to_template_format
@@ -10,34 +11,21 @@ logger = logging.getLogger("paperless.migrations")
def convert_from_format_to_template(apps, schema_editor):
- WorkflowAction = apps.get_model("documents", "WorkflowAction")
+ WorkflowActions = apps.get_model("documents", "WorkflowAction")
- batch_size = 500
- actions_to_update = []
-
- queryset = (
- WorkflowAction.objects.filter(assign_title__isnull=False)
- .exclude(assign_title="")
- .only("id", "assign_title")
- )
-
- for action in queryset:
- action.assign_title = convert_format_str_to_template_format(
- action.assign_title,
- )
- logger.debug(
- "Converted WorkflowAction id %d title to template format: %s",
- action.id,
- action.assign_title,
- )
- actions_to_update.append(action)
-
- if actions_to_update:
- WorkflowAction.objects.bulk_update(
- actions_to_update,
- ["assign_title"],
- batch_size=batch_size,
- )
+ with transaction.atomic():
+ for WorkflowAction in WorkflowActions.objects.all():
+ if not WorkflowAction.assign_title:
+ continue
+ WorkflowAction.assign_title = convert_format_str_to_template_format(
+ WorkflowAction.assign_title,
+ )
+ logger.debug(
+ "Converted WorkflowAction id %d title to template format: %s",
+ WorkflowAction.id,
+ WorkflowAction.assign_title,
+ )
+ WorkflowAction.save()
class Migration(migrations.Migration):
@@ -47,13 +35,15 @@ class Migration(migrations.Migration):
operations = [
migrations.AlterField(
- model_name="workflowaction",
+ model_name="WorkflowAction",
name="assign_title",
field=models.TextField(
- blank=True,
- help_text="Assign a document title, must be a Jinja2 template, see documentation.",
null=True,
- verbose_name="assign title",
+ blank=True,
+ help_text=(
+ "Assign a document title, can be a JINJA2 template, "
+ "see documentation.",
+ ),
),
),
migrations.RunPython(
diff --git a/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py
deleted file mode 100644
index 4381eabb1..000000000
--- a/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Generated by Django 5.2.6 on 2025-10-27 15:11
-
-from django.db import migrations
-from django.db import models
-
-
-class Migration(migrations.Migration):
- dependencies = [
- ("documents", "1073_migrate_workflow_title_jinja"),
- ]
-
- operations = [
- migrations.AddField(
- model_name="workflowrun",
- name="deleted_at",
- field=models.DateTimeField(blank=True, null=True),
- ),
- migrations.AddField(
- model_name="workflowrun",
- name="restored_at",
- field=models.DateTimeField(blank=True, null=True),
- ),
- migrations.AddField(
- model_name="workflowrun",
- name="transaction_id",
- field=models.UUIDField(blank=True, null=True),
- ),
- ]
diff --git a/src/documents/models.py b/src/documents/models.py
index 12dab2b6d..4794bc82f 100644
--- a/src/documents/models.py
+++ b/src/documents/models.py
@@ -1547,7 +1547,7 @@ class Workflow(models.Model):
return f"Workflow: {self.name}"
-class WorkflowRun(SoftDeleteModel):
+class WorkflowRun(models.Model):
workflow = models.ForeignKey(
Workflow,
on_delete=models.CASCADE,
diff --git a/src/documents/permissions.py b/src/documents/permissions.py
index ac6d3f9ca..a2b165fd8 100644
--- a/src/documents/permissions.py
+++ b/src/documents/permissions.py
@@ -61,22 +61,21 @@ def get_groups_with_only_permission(obj, codename):
return Group.objects.filter(id__in=group_object_perm_group_ids).distinct()
-def set_permissions_for_object(permissions: dict, object, *, merge: bool = False):
+def set_permissions_for_object(permissions: list[str], object, *, merge: bool = False):
"""
- Set permissions for an object. The permissions are given as a mapping of actions
- to a dict of user / group id lists, e.g.
- {"view": {"users": [1], "groups": [2]}, "change": {"users": [], "groups": []}}.
+ Set permissions for an object. The permissions are given as a list of strings
+ in the format "action_modelname", e.g. "view_document".
If merge is True, the permissions are merged with the existing permissions and
no users or groups are removed. If False, the permissions are set to exactly
the given list of users and groups.
"""
- for action, entry in permissions.items():
+ for action in permissions:
permission = f"{action}_{object.__class__.__name__.lower()}"
- if "users" in entry:
+ if "users" in permissions[action]:
# users
- users_to_add = User.objects.filter(id__in=entry["users"])
+ users_to_add = User.objects.filter(id__in=permissions[action]["users"])
users_to_remove = (
get_users_with_perms(
object,
@@ -86,12 +85,12 @@ def set_permissions_for_object(permissions: dict, object, *, merge: bool = False
if not merge
else User.objects.none()
)
- if users_to_add.exists() and users_to_remove.exists():
+ if len(users_to_add) > 0 and len(users_to_remove) > 0:
users_to_remove = users_to_remove.exclude(id__in=users_to_add)
- if users_to_remove.exists():
+ if len(users_to_remove) > 0:
for user in users_to_remove:
remove_perm(permission, user, object)
- if users_to_add.exists():
+ if len(users_to_add) > 0:
for user in users_to_add:
assign_perm(permission, user, object)
if action == "change":
@@ -101,9 +100,9 @@ def set_permissions_for_object(permissions: dict, object, *, merge: bool = False
user,
object,
)
- if "groups" in entry:
+ if "groups" in permissions[action]:
# groups
- groups_to_add = Group.objects.filter(id__in=entry["groups"])
+ groups_to_add = Group.objects.filter(id__in=permissions[action]["groups"])
groups_to_remove = (
get_groups_with_only_permission(
object,
@@ -112,12 +111,12 @@ def set_permissions_for_object(permissions: dict, object, *, merge: bool = False
if not merge
else Group.objects.none()
)
- if groups_to_add.exists() and groups_to_remove.exists():
+ if len(groups_to_add) > 0 and len(groups_to_remove) > 0:
groups_to_remove = groups_to_remove.exclude(id__in=groups_to_add)
- if groups_to_remove.exists():
+ if len(groups_to_remove) > 0:
for group in groups_to_remove:
remove_perm(permission, group, object)
- if groups_to_add.exists():
+ if len(groups_to_add) > 0:
for group in groups_to_add:
assign_perm(permission, group, object)
if action == "change":
@@ -165,24 +164,6 @@ def has_perms_owner_aware(user, perms, obj):
return obj.owner is None or obj.owner == user or checker.has_perm(perms, obj)
-class ViewDocumentsPermissions(BasePermission):
- """
- Permissions class that checks for model permissions for only viewing Documents.
- """
-
- perms_map = {
- "OPTIONS": ["documents.view_document"],
- "GET": ["documents.view_document"],
- "POST": ["documents.view_document"],
- }
-
- def has_permission(self, request, view):
- if not request.user or (not request.user.is_authenticated): # pragma: no cover
- return False
-
- return request.user.has_perms(self.perms_map.get(request.method, []))
-
-
class PaperlessNotePermissions(BasePermission):
"""
Permissions class that checks for model permissions for Notes.
diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py
index 3cb2b00af..25207bdfa 100644
--- a/src/documents/serialisers.py
+++ b/src/documents/serialisers.py
@@ -585,9 +585,6 @@ class TagSerializer(MatchingModelSerializer, OwnedObjectSerializer):
.select_related("owner")
.annotate(document_count=Count("documents", filter=filter_q)),
many=True,
- user=self.user,
- full_perms=self.full_perms,
- all_fields=self.all_fields,
context=self.context,
)
return serializer.data
@@ -1044,7 +1041,7 @@ class DocumentSerializer(
request.version if request else settings.REST_FRAMEWORK["DEFAULT_VERSION"],
)
- if api_version < 9 and "created" in self.fields:
+ if api_version < 9:
# 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 e410b54e2..8862b064b 100644
--- a/src/documents/signals/handlers.py
+++ b/src/documents/signals/handlers.py
@@ -34,7 +34,6 @@ 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
@@ -393,9 +392,9 @@ class CannotMoveFilesException(Exception):
# should be disabled in /src/documents/management/commands/document_importer.py handle
-@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)
+@receiver(models.signals.post_save, sender=CustomFieldInstance)
+@receiver(models.signals.m2m_changed, sender=Document.tags.through)
+@receiver(models.signals.post_save, sender=Document)
def update_filename_and_move_files(
sender,
instance: Document | CustomFieldInstance,
@@ -532,43 +531,34 @@ def update_filename_and_move_files(
)
-@shared_task
-def process_cf_select_update(custom_field: CustomField):
- """
- 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.
+ When a custom field is updated:
+ 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.
"""
if (
instance.data_type == CustomField.FieldDataType.SELECT
and instance.fields.count() > 0
and instance.extra_data
): # Only select fields, for now
- process_cf_select_update.delay(instance)
+ 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)
@receiver(models.signals.post_delete, sender=CustomField)
@@ -1104,9 +1094,7 @@ def run_workflows(
if not use_overrides:
title = document.title
- doc_url = (
- f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/"
- )
+ doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/"
correspondent = (
document.correspondent.name if document.correspondent else ""
)
@@ -1174,41 +1162,15 @@ def run_workflows(
else ""
)
try:
- 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]
+ attachments = []
+ if action.email.include_document and original_file:
+ attachments = [document]
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}",
@@ -1223,9 +1185,7 @@ def run_workflows(
def webhook_action():
if not use_overrides:
title = document.title
- doc_url = (
- f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/"
- )
+ doc_url = f"{settings.PAPERLESS_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 7d76e7f31..00de8de2c 100644
--- a/src/documents/templating/filepath.py
+++ b/src/documents/templating/filepath.py
@@ -52,33 +52,6 @@ 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
@@ -155,7 +128,7 @@ def get_added_date_context(document: Document) -> dict[str, str]:
def get_basic_metadata_context(
document: Document,
*,
- no_value_default: str = NO_VALUE_PLACEHOLDER,
+ no_value_default: str,
) -> dict[str, str]:
"""
Given a Document, constructs some basic information about it. If certain values are not set,
@@ -293,7 +266,7 @@ def validate_filepath_template_and_render(
# Build the context dictionary
context = (
{"document": document}
- | get_basic_metadata_context(document, no_value_default=NO_VALUE_PLACEHOLDER)
+ | get_basic_metadata_context(document, no_value_default="-none-")
| get_creation_date_context(document)
| get_added_date_context(document)
| get_tags_context(tags_list)
diff --git a/src/documents/templating/workflows.py b/src/documents/templating/workflows.py
index 67f3ac930..25f1e57ef 100644
--- a/src/documents/templating/workflows.py
+++ b/src/documents/templating/workflows.py
@@ -80,7 +80,7 @@ def parse_w_workflow_placeholders(
if doc_url is not None:
formatting.update({"doc_url": doc_url})
- logger.debug(f"Parsing Workflow Jinja template: {text}")
+ logger.debug(f"Jinja Template is : {text}")
try:
template = _template_environment.from_string(
text,
diff --git a/src/documents/tests/test_admin.py b/src/documents/tests/test_admin.py
index 61a579dc7..278014f7c 100644
--- a/src/documents/tests/test_admin.py
+++ b/src/documents/tests/test_admin.py
@@ -2,11 +2,9 @@ import types
from unittest.mock import patch
from django.contrib.admin.sites import AdminSite
-from django.contrib.auth.models import Permission
from django.contrib.auth.models import User
from django.test import TestCase
from django.utils import timezone
-from rest_framework import status
from documents import index
from documents.admin import DocumentAdmin
@@ -127,36 +125,3 @@ class TestPaperlessAdmin(DirectoriesMixin, TestCase):
form.request = types.SimpleNamespace(user=superuser)
self.assertTrue(form.is_valid())
self.assertEqual({}, form.errors)
-
- def test_superuser_can_only_be_modified_by_superuser(self):
- superuser = User.objects.create_superuser(username="superuser", password="test")
- user = User.objects.create(
- username="test",
- is_superuser=False,
- is_staff=True,
- )
- change_user_perm = Permission.objects.get(codename="change_user")
- user.user_permissions.add(change_user_perm)
-
- self.client.force_login(user)
- response = self.client.patch(
- f"/api/users/{superuser.pk}/",
- {"first_name": "Updated"},
- content_type="application/json",
- )
- self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
- self.assertEqual(
- response.content.decode(),
- "Superusers can only be modified by other superusers",
- )
-
- self.client.logout()
- self.client.force_login(superuser)
- response = self.client.patch(
- f"/api/users/{superuser.pk}/",
- {"first_name": "Updated"},
- content_type="application/json",
- )
- self.assertEqual(response.status_code, status.HTTP_200_OK)
- superuser.refresh_from_db()
- self.assertEqual(superuser.first_name, "Updated")
diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py
index 8cc8f2cb2..8e24226dc 100644
--- a/src/documents/tests/test_api_custom_fields.py
+++ b/src/documents/tests/test_api_custom_fields.py
@@ -1,11 +1,9 @@
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
@@ -213,7 +211,6 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase):
],
)
- @override_settings(CELERY_TASK_ALWAYS_EAGER=True)
def test_custom_field_select_options_pruned(self):
"""
GIVEN:
@@ -245,7 +242,7 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase):
CustomFieldInstance.objects.create(
document=doc,
field=custom_field_select,
- value_select="def-456",
+ value_text="abc-123",
)
resp = self.client.patch(
@@ -277,52 +274,6 @@ 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 87190c23b..3f7b2c385 100644
--- a/src/documents/tests/test_api_documents.py
+++ b/src/documents/tests/test_api_documents.py
@@ -172,35 +172,6 @@ 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:
@@ -941,23 +912,6 @@ 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:
@@ -2296,23 +2250,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertListEqual(response.data, ["test", "test2"])
- def test_get_log_with_limit(self):
- log_data = "test1\ntest2\ntest3\n"
- with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f:
- f.write(log_data)
- response = self.client.get("/api/logs/paperless/", {"limit": 2})
- self.assertEqual(response.status_code, status.HTTP_200_OK)
- self.assertListEqual(response.data, ["test2", "test3"])
-
- def test_get_log_with_invalid_limit(self):
- log_data = "test1\ntest2\n"
- with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f:
- f.write(log_data)
- response = self.client.get("/api/logs/paperless/", {"limit": "abc"})
- self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
- response = self.client.get("/api/logs/paperless/", {"limit": -5})
- self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
-
def test_invalid_regex_other_algorithm(self):
for endpoint in ["correspondents", "tags", "document_types"]:
response = self.client.post(
diff --git a/src/documents/tests/test_api_email.py b/src/documents/tests/test_api_email.py
index 884553dba..0f9bd9695 100644
--- a/src/documents/tests/test_api_email.py
+++ b/src/documents/tests/test_api_email.py
@@ -329,34 +329,6 @@ class TestEmail(DirectoriesMixin, SampleDirMixin, APITestCase):
)
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
- def test_email_only_requires_view_permission(self):
- """
- GIVEN:
- - User having only view documents permission
- WHEN:
- - API request is made to bulk email documents
- THEN:
- - Request succeeds
- """
- user1 = User.objects.create_user(username="test1")
- user1.user_permissions.add(*Permission.objects.filter(codename="view_document"))
-
- self.client.force_authenticate(user1)
-
- response = self.client.post(
- self.ENDPOINT,
- json.dumps(
- {
- "documents": [self.doc1.pk],
- "addresses": "test@example.com",
- "subject": "Test",
- "message": "Test message",
- },
- ),
- content_type="application/json",
- )
- self.assertEqual(response.status_code, status.HTTP_200_OK)
-
@override_settings(
EMAIL_ENABLED=True,
EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend",
diff --git a/src/documents/tests/test_api_objects.py b/src/documents/tests/test_api_objects.py
index 014dd3c2a..bba9031db 100644
--- a/src/documents/tests/test_api_objects.py
+++ b/src/documents/tests/test_api_objects.py
@@ -4,7 +4,6 @@ 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
@@ -335,45 +334,6 @@ 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 bc81dabe9..8ffce1f95 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": "areallysupersecretpassword235",
+ "password": "test",
"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": "newreallystrongpassword456",
+ "password": "123xyz",
},
)
diff --git a/src/documents/tests/test_api_profile.py b/src/documents/tests/test_api_profile.py
index 2eedf3297..8475459a2 100644
--- a/src/documents/tests/test_api_profile.py
+++ b/src/documents/tests/test_api_profile.py
@@ -192,65 +192,6 @@ 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 9ade7d2c3..721d29424 100644
--- a/src/documents/tests/test_api_remote_version.py
+++ b/src/documents/tests/test_api_remote_version.py
@@ -1,4 +1,3 @@
-from django.core.cache import cache
from pytest_httpx import HTTPXMock
from rest_framework import status
from rest_framework.test import APIClient
@@ -9,9 +8,6 @@ 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 191381721..8f316c145 100644
--- a/src/documents/tests/test_api_search.py
+++ b/src/documents/tests/test_api_search.py
@@ -89,65 +89,6 @@ 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):
@@ -1289,7 +1230,7 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase):
content_type__app_label="admin",
),
)
- set_permissions([4, 5], set_permissions={}, owner=user2, merge=False)
+ set_permissions([4, 5], set_permissions=[], owner=user2, merge=False)
with index.open_index_writer() as writer:
index.update_document(writer, d1)
diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py
index a1fd3d674..62ca52d71 100644
--- a/src/documents/tests/test_file_handling.py
+++ b/src/documents/tests/test_file_handling.py
@@ -530,7 +530,6 @@ 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):
@@ -580,7 +579,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
}
cf.save()
self.assertEqual(generate_filename(doc), Path("document_aubergine.pdf"))
- # handler should have been called once via the async task
+ # handler should have been called
self.assertEqual(m.call_count, 1)
@@ -1079,47 +1078,6 @@ 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 f216feedb..2a41542e9 100644
--- a/src/documents/tests/test_index.py
+++ b/src/documents/tests/test_index.py
@@ -2,7 +2,6 @@ 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
@@ -128,126 +127,3 @@ 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 b01b8d47e..a67e5e8c5 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 doesn't exist", str(e.exception))
+ self.assertEqual("That path isn't a directory", str(e))
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.exception))
+ self.assertEqual("That path isn't a directory", str(e))
def test_export_target_not_writable(self):
"""
@@ -608,10 +608,7 @@ class TestExportImport(
with self.assertRaises(CommandError) as e:
call_command(*args)
- self.assertEqual(
- "That path doesn't appear to be writable",
- str(e.exception),
- )
+ self.assertEqual("That path doesn't appear to be writable", str(e))
def test_no_archive(self):
"""
diff --git a/src/documents/tests/test_management_fuzzy.py b/src/documents/tests/test_management_fuzzy.py
index 2a4f28025..453a86082 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.exception))
+ self.assertIn("The ratio must be between 0 and 100", str(e))
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.exception))
+ self.assertIn("The ratio must be between 0 and 100", str(e))
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.exception))
+ self.assertIn("There must be at least 1 process", str(e))
def test_no_matches(self):
"""
diff --git a/src/documents/tests/test_management_importer.py b/src/documents/tests/test_management_importer.py
index 004f5ac5f..e700ecdc9 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.exception),
- )
+ self.assertIn(
+ "That directory doesn't appear to contain a manifest.json file.",
+ str(e),
+ )
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.exception),
- )
+ self.assertIn(
+ "The manifest file contains a record which does not refer to an actual document file.",
+ str(e),
+ )
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.exception))
+ self.assertIn('The manifest file refers to "noexist.pdf"', str(e))
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.assertIn("Failed to read from original file", str(cm.exception))
+ self.assertInt("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.assertIn("Failed to read from archive file", str(cm.exception))
+ self.assertInt("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.assertIn("That path doesn't exist", str(cm.exception))
+ self.assertInt("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.assertIn(
- "That path doesn't appear to be readable",
- str(cm.exception),
- )
+ self.assertInt(
+ "That path doesn't appear to be readable",
+ str(cm.exception),
+ )
def test_import_source_does_not_exist(self):
"""
@@ -185,7 +185,8 @@ 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.exception))
+
+ self.assertIn("That path doesn't exist", str(e))
def test_import_files_exist(self):
"""
diff --git a/src/documents/tests/test_tag_hierarchy.py b/src/documents/tests/test_tag_hierarchy.py
index e748225cd..708e3e534 100644
--- a/src/documents/tests/test_tag_hierarchy.py
+++ b/src/documents/tests/test_tag_hierarchy.py
@@ -229,24 +229,3 @@ class TestTagHierarchy(APITestCase):
assert resp_ok.status_code in (200, 202)
x.refresh_from_db()
assert x.parent_pk == c.id
-
- def test_is_root_filter_returns_only_root_tags(self):
- other_root = Tag.objects.create(name="Other parent")
-
- response = self.client.get(
- "/api/tags/",
- {"is_root": "true"},
- )
-
- assert response.status_code == 200
- assert response.data["count"] == 2
-
- returned_ids = {row["id"] for row in response.data["results"]}
- assert self.child.pk not in returned_ids
- assert self.parent.pk in returned_ids
- assert other_root.pk in returned_ids
-
- parent_entry = next(
- row for row in response.data["results"] if row["id"] == self.parent.pk
- )
- assert any(child["id"] == self.child.pk for child in parent_entry["children"])
diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py
index 6438e4b10..a6da01578 100644
--- a/src/documents/tests/test_workflows.py
+++ b/src/documents/tests/test_workflows.py
@@ -8,10 +8,8 @@ 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
@@ -23,8 +21,6 @@ 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
@@ -34,7 +30,6 @@ from pytest_django.fixtures import SettingsWrapper
from documents import tasks
from documents.data_models import ConsumableDocument
-from documents.data_models import DocumentMetadataOverrides
from documents.data_models import DocumentSource
from documents.matching import document_matches_workflow
from documents.matching import existing_document_matches_workflow
@@ -2793,80 +2788,6 @@ class TestWorkflows(
self.assertEqual(doc.tags.all().count(), 1)
self.assertIn(self.t2, doc.tags.all())
- @override_settings(
- PAPERLESS_EMAIL_HOST="localhost",
- EMAIL_ENABLED=True,
- PAPERLESS_URL="http://localhost:8000",
- )
- @mock.patch("django.core.mail.message.EmailMessage.send")
- def test_workflow_assignment_then_email_includes_attachment(self, mock_email_send):
- """
- GIVEN:
- - Workflow with assignment and email actions
- - Email action configured to include the document
- WHEN:
- - Workflow is run on a newly created document
- THEN:
- - Email action sends the document as an attachment
- """
-
- storage_path = StoragePath.objects.create(
- name="sp2",
- path="workflow/{{ document.pk }}",
- )
- trigger = WorkflowTrigger.objects.create(
- type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION,
- )
- assignment_action = WorkflowAction.objects.create(
- type=WorkflowAction.WorkflowActionType.ASSIGNMENT,
- assign_storage_path=storage_path,
- assign_owner=self.user2,
- )
- assignment_action.assign_tags.add(self.t1)
-
- email_action_config = WorkflowActionEmail.objects.create(
- subject="Doc ready {doc_title}",
- body="Document URL: {doc_url}",
- to="owner@example.com",
- include_document=True,
- )
- email_action = WorkflowAction.objects.create(
- type=WorkflowAction.WorkflowActionType.EMAIL,
- email=email_action_config,
- )
-
- workflow = Workflow.objects.create(name="Assignment then email", order=0)
- workflow.triggers.add(trigger)
- workflow.actions.set([assignment_action, email_action])
-
- temp_working_copy = shutil.copy(
- self.SAMPLE_DIR / "simple.pdf",
- self.dirs.scratch_dir / "working-copy.pdf",
- )
-
- Document.objects.create(
- title="workflow doc",
- correspondent=self.c,
- checksum="wf-assignment-email",
- mime_type="application/pdf",
- )
-
- consumable_document = ConsumableDocument(
- source=DocumentSource.ConsumeFolder,
- original_file=temp_working_copy,
- )
-
- mock_email_send.return_value = 1
-
- with self.assertNoLogs("paperless.handlers", level="ERROR"):
- run_workflows(
- WorkflowTrigger.WorkflowTriggerType.CONSUMPTION,
- consumable_document,
- overrides=DocumentMetadataOverrides(),
- )
-
- mock_email_send.assert_called_once()
-
@override_settings(
PAPERLESS_EMAIL_HOST="localhost",
EMAIL_ENABLED=True,
@@ -2993,70 +2914,6 @@ 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,
)
@@ -3212,8 +3069,6 @@ 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):
@@ -3265,7 +3120,7 @@ class TestWorkflows(
mock_post.assert_called_once_with(
url="http://paperless-ngx.com",
- data=f"Test message: http://localhost:8000/paperless/documents/{doc.id}/",
+ data=f"Test message: http://localhost:8000/documents/{doc.id}/",
headers={},
files=None,
as_json=False,
diff --git a/src/documents/views.py b/src/documents/views.py
index ba265926c..696311a7a 100644
--- a/src/documents/views.py
+++ b/src/documents/views.py
@@ -6,7 +6,6 @@ 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
@@ -23,7 +22,6 @@ 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
@@ -71,7 +69,6 @@ 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
@@ -108,7 +105,6 @@ 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
@@ -120,7 +116,6 @@ 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
@@ -146,7 +141,6 @@ from documents.permissions import AcknowledgeTasksPermissions
from documents.permissions import PaperlessAdminPermissions
from documents.permissions import PaperlessNotePermissions
from documents.permissions import PaperlessObjectPermissions
-from documents.permissions import ViewDocumentsPermissions
from documents.permissions import get_document_count_filter_for_user
from documents.permissions import get_objects_for_user_owner_aware
from documents.permissions import has_perms_owner_aware
@@ -185,6 +179,7 @@ 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
@@ -1176,12 +1171,7 @@ class DocumentViewSet(
return Response(sorted(entries, key=lambda x: x["timestamp"], reverse=True))
- @action(
- methods=["post"],
- detail=True,
- url_path="email",
- permission_classes=[IsAuthenticated, ViewDocumentsPermissions],
- )
+ @action(methods=["post"], detail=True, url_path="email")
# TODO: deprecated as of 2.19, remove in future release
def email_document(self, request, pk=None):
request_data = request.data.copy()
@@ -1193,7 +1183,6 @@ class DocumentViewSet(
detail=False,
url_path="email",
serializer_class=EmailSerializer,
- permission_classes=[IsAuthenticated, ViewDocumentsPermissions],
)
def email_documents(self, request, data=None):
serializer = EmailSerializer(data=data or request.data)
@@ -1217,28 +1206,12 @@ 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=attachments,
+ attachments=documents,
+ use_archive=use_archive_version,
)
logger.debug(
@@ -1382,13 +1355,6 @@ 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(
@@ -1420,22 +1386,8 @@ 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:
- if limit is None:
- lines = [line.rstrip() for line in f.readlines()]
- else:
- lines = [line.rstrip() for line in deque(f, maxlen=limit)]
+ lines = [line.rstrip() for line in f.readlines()]
return Response(lines)
@@ -1880,7 +1832,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"].strip()
+ term = request.query_params["term"]
else:
return HttpResponseBadRequest("Term required")
@@ -2353,7 +2305,7 @@ class StoragePathViewSet(ModelViewSet, PermissionsAwareDocumentCountMixin):
document = serializer.validated_data.get("document")
path = serializer.validated_data.get("path")
- result = format_filename(document, path)
+ result = validate_filepath_template_and_render(path, document)
return Response(result)
@@ -2452,34 +2404,31 @@ 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__)
- 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()
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}")
-
- if remote_version:
- cache.set(self.cache_key, remote_version, 60 * 15)
- else:
- remote_version = "0.0.0"
+ except httpx.HTTPError as e:
+ logger.debug(f"An error occurred checking for available updates: {e}")
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 81d1857f2..af25f1687 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Language: af_ZA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Waarde moet geldige JSON wees."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Ongeldige logiese uitdrukking {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 cdcc47657..784096680 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-21 23:54\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Language: ar_SA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "المستندات"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "يجب أن تكون القيمة JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
-msgstr "قائمة عبارة خاطئة."
+msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} حقل مخصص غير صالح."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 7d6930b1f..8325d01c5 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Belarusian\n"
"Language: be_BY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Дакументы"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 f05719365..6d061816f 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Language: bg_BG\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Стойността трябва да е валидна JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Невалидна заявка на персонализираното полето"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Списък с невалиден израз. Не може да е празно."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Невалиден логически оператор {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Надвишен е максимален брой за заявки."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не е валидно персонализирано поле."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддържа заявка expr {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Надвишена е максималната дълбочина на вмъкване."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 742257b8b..a884fcf6f 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-24 12:15\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents "
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Valor ha de ser un JSON valid."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Expressió de camp de consulta invàlid"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Expressió de llista invàlida. No ha d'estar buida."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Invàlid operand lògic {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Condicions de consulta excedits."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} no és un camp personalitzat vàlid."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no suporta expressió de consulta {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Màxima profunditat anidada excedida."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 f6aa7f408..bc7116050 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Language: cs_CZ\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Hodnota musí být platný JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz dotazu na vlastní pole"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný seznam výrazů. Nesmí být prázdný."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Překročen maximální počet podmínek dotazu."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} není platné vlastní pole."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz dotazu {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Překročena maximální hloubka větvení."
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr "Vlastní pole nebylo nalezeno"
@@ -858,11 +858,11 @@ msgstr "má tyto štítky"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr "má všechny tyto štítky"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "nemá tyto štítky"
+msgstr ""
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "má tento typ dokumentu"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr "nemá tyto typy dokumentů"
+msgstr ""
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "má tohoto korespondenta"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr "nemá tyto korespondenty"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
@@ -886,15 +886,15 @@ msgstr "má tuto cestu k úložišti"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "nemá tyto cesty k úložišti"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "filtrovat dotazem na vlastní pole"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "Dotaz na vlastní pole zakódovaný ve formátu JSON."
+msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index d2452f2d6..d6f9fc0f4 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Language: da_DK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Værdien skal være gyldig JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Ugyldigt tilpasset feltforespørgselsudtryk"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Ugyldig udtryksliste. Må ikke være tom."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Ugyldig logisk operatør {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Maksimalt antal forespørgselsbetingelser overskredet."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} er ikke et gyldigt tilpasset felt."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} understøtter ikke forespørgsel expr {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maksimal indlejringsdybde overskredet."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 82a6946e7..e0ae70264 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-22 12:12\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumente"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Ungültiger logischer Operator {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Maximale Anzahl an Abfragebedingungen überschritten."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ist kein gültiges benutzerdefiniertes Feld."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximale Verschachtelungstiefe überschritten."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "Keine"
+msgstr "Keiner"
#: documents/models.py:56 documents/models.py:984
msgid "Any word"
@@ -830,7 +830,7 @@ msgstr "Benutzerdefiniertes Feld"
#: documents/models.py:1009
msgid "Workflow Trigger Type"
-msgstr "Arbeitsablauf-Auslösertyp"
+msgstr "Workflow-Auslösertyp"
#: documents/models.py:1021
msgid "filter path"
@@ -862,7 +862,7 @@ msgstr "hat alle diese Tags"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "hat diese Tags nicht)"
+msgstr "hat diese Tags nicht"
#: documents/models.py:1087
msgid "has this document type"
@@ -890,11 +890,11 @@ msgstr "hat diese Speicherpfade nicht"
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "Filtere nach benutzerdefiniertem Feld"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "JSON-kodierte Abfrage eines benutzerdefinierten Felds."
+msgstr "JSON-kodierte benutzerdefinierter Feldabfrageausdruck."
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1166,11 +1166,11 @@ msgstr "Webhook"
#: documents/models.py:1518
msgid "workflow action"
-msgstr "Arbeitsablauf-Aktion"
+msgstr "Workflow-Aktion"
#: documents/models.py:1519
msgid "workflow actions"
-msgstr "Arbeitsablauf-Aktionen"
+msgstr "Workflow-Aktionen"
#: documents/models.py:1528 paperless_mail/models.py:145
msgid "order"
@@ -1225,7 +1225,7 @@ msgstr "Dateityp %(type)s nicht unterstützt"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr "Feld-ID eines benutzerdefinierten Felds muss eine Ganzzahl sein: %(id)s"
+msgstr "Benutzerdefinierte Feld ID 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 3acad218d..cc1577fda 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Language: el_GR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Έγγραφα"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Μη έγκυρος λογικός τελεστής {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 8e745a2e9..0f2d27f3f 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-12-10 16:39+0000\n"
+"POT-Creation-Date: 2025-10-22 18:15+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:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr ""
@@ -1224,35 +1224,35 @@ msgstr ""
msgid "Invalid regular expression: %(error)s"
msgstr ""
-#: documents/serialisers.py:622
+#: documents/serialisers.py:619
msgid "Invalid color."
msgstr ""
-#: documents/serialisers.py:1808
+#: documents/serialisers.py:1805
#, python-format
msgid "File type %(type)s not supported"
msgstr ""
-#: documents/serialisers.py:1852
+#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
msgstr ""
-#: documents/serialisers.py:1859
+#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
msgstr ""
-#: documents/serialisers.py:1876 documents/serialisers.py:1886
+#: 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:1881
+#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
msgstr ""
-#: documents/serialisers.py:1996
+#: documents/serialisers.py:1993
msgid "Invalid variable detected."
msgstr ""
diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po
index 7a1b970bb..d3f90ea91 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "El valor debe ser JSON válido."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Expresión de consulta de campo personalizado no válida"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expresiones no válida. No debe estar vacía."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Se ha superado el número máximo de condiciones de consulta."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{nombre!r} no es un campo personalizado válido."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} no admite la consulta expr {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profundidad máxima de nidificación superada."
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr "Campo personalizado no encontrado"
@@ -136,11 +136,11 @@ msgstr "etiquetas"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr "No se puede establecer a sí mismo como padre."
+msgstr ""
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr "No se puede establecer el padre a un descendiente."
+msgstr ""
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -758,7 +758,7 @@ msgstr "Selecciona"
#: documents/models.py:795
msgid "Long Text"
-msgstr "Texto largo"
+msgstr ""
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "tiene estas etiqueta(s)"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr "tiene todas estas etiqueta(s)"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "no tiene estas etiqueta(s)"
+msgstr ""
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "tiene este tipo de documento"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr "no tiene estos tipos de documento (s)"
+msgstr ""
#: documents/models.py:1102
msgid "has this correspondent"
@@ -882,19 +882,19 @@ msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr "tiene esta ruta de almacenamiento"
+msgstr ""
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "no tiene esta(s) ruta(s) de almacenamiento"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "filtrar consulta de campo personalizado"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "Expresión de consulta de campo personalizado codificado en JSON."
+msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1038,7 +1038,7 @@ msgstr "asignar título"
#: documents/models.py:1302
msgid "Assign a document title, must be a Jinja2 template, see documentation."
-msgstr "Asignar un título de documento, debe ser una plantilla de Jinja2, ver documentación."
+msgstr ""
#: documents/models.py:1310 paperless_mail/models.py:274
msgid "assign this tag"
@@ -1225,20 +1225,20 @@ msgstr "Tipo de fichero %(type)s no suportado"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr "El id del campo personalizado debe ser un entero: %(id)s"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "El campo personalizado con identificador %(id)s no existe"
+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 "Los campos personalizados deben ser una lista de enteros o un identificador de mapeo de objetos a valores."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Algunos campos personalizados no existen o fueron especificados dos veces."
+msgstr ""
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
@@ -1473,21 +1473,21 @@ msgstr "Como último paso, por favor complete el siguiente formulario:"
#: documents/validators.py:24
#, python-brace-format
msgid "Unable to parse URI {value}, missing scheme"
-msgstr "No se puede analizar la URI {value}, falta el esquema"
+msgstr ""
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr "No se puede analizar la URI {value}, falta la ubicación de la red o la ruta"
+msgstr ""
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr "El esquema URI '{parts.scheme}' no está permitido. Esquemas permitidos: {', '.join(allowed_schemes)}"
+msgstr ""
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr "No se puede analizar la URI {value}"
+msgstr ""
#: paperless/apps.py:11
msgid "Paperless"
@@ -1731,7 +1731,7 @@ msgstr "Español"
#: paperless/settings.py:785
msgid "Persian"
-msgstr "Persa"
+msgstr ""
#: paperless/settings.py:786
msgid "Finnish"
@@ -1815,7 +1815,7 @@ msgstr "Ucraniano"
#: paperless/settings.py:806
msgid "Vietnamese"
-msgstr "Vietnamita"
+msgstr ""
#: paperless/settings.py:807
msgid "Chinese Simplified"
diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po
index 08358db78..22542b5c2 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"Language: et_EE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumendid"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Väärtus peab olema lubatav JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Vigane kohandatud välja päringu avaldis"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Vigane avaldiste loend. Peab olema mittetühi."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Vigane loogikaoperaator {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Päringutingimuste suurim hulk on ületatud."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ei ole lubatud kohandatud väli."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ei toeta päringu avaldist {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Suurim pesastamis sügavus ületatud."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 00a02cebe..4605f5eec 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Language: fa_IR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "اسناد و مدارک"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "مقدار باید JSON معتبر باشد."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Invalid custom field query expression"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{نام! R} یک زمینه سفارشی معتبر نیست."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 a90715bc6..e4f6ff07a 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Language: fi_FI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Asiakirjat"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Arvon on oltava kelvollista JSON:ia."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 e98fdc37a..d5094ec7d 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documents"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "La valeur doit être un JSON valide."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
-msgstr "Requête de champ personnalisé invalide"
+msgstr "Expression de requête personnalisée invalide"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Liste d’expressions invalide. Doit être non vide."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Opérateur logique {op!r} invalide"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Nombre maximum de conditions de requête dépassé."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} n'est pas un champ personnalisé valide."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne supporte pas l'expression {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profondeur de récursion maximale dépassée."
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr "Champ personnalisé non trouvé"
@@ -136,11 +136,11 @@ msgstr "étiquettes"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr "Impossible de se définir comme parent."
+msgstr ""
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr "Impossible de défini un parent comme descendant."
+msgstr ""
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -862,7 +862,7 @@ msgstr "a toutes ces étiquettes"
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "n'a pas ce(s) tag(s)"
+msgstr ""
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "A ce type de document"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr "n'a pas ce(s) type(s) de document"
+msgstr ""
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "A ce correspondant"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr "n'a pas ce(s) correspondant(s)"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
@@ -890,11 +890,11 @@ msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "filtrer la requête de champ personnalisé"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "Expression de champ personnalisé encodée en JSON."
+msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
@@ -1225,20 +1225,20 @@ msgstr "Type de fichier %(type)s non pris en charge"
#: documents/serialisers.py:1849
#, python-format
msgid "Custom field id must be an integer: %(id)s"
-msgstr "L'id du champ personnalisé doit être un entier : %(id)s"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "Le champ personnalisé avec l'id %(id)s n'existe pas"
+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 "Les champs personnalisés doivent être une liste d'entiers ou un mappage d'identifiants à des valeurs."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Certains champs personnalisés n'existent pas ou ont été spécifiés deux fois."
+msgstr ""
#: documents/serialisers.py:1993
msgid "Invalid variable detected."
diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po
index 709ed503e..7ffa79f34 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Language: he_IL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "מסמכים"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "ערך מוכרך להיות JSON תקין."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "סימן פעולה לוגית לא חוקי {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "חריגה ממספר תנאי השאילתה המרבי."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} הוא לא שדה מותאם אישית חוקי."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "חריגה מעומק הקינון המרבי."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 58659d5f9..f8aed02a9 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"Language: hr_HR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 3f2cc38df..65a7225d0 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Language: hu_HU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentumok"
-#: documents/filters.py:395
+#: documents/filters.py:386
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:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Érvénytelen egyéni mező lekérdezési kifejezés"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Érvénytelen kifejezéslista. Nem lehet üres."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Érvénytelen logikai operátor {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Maximum lekérdezési feltételszám átlépve."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nem érvényes egyéni mező."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
-msgstr "A(z) {data_type} nem támogatja a {expr!r} kifejezés lekérdezést."
+msgstr "{data_type} nem támogatja a(z) {expr!r} lekérdezési kifejezést."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximum beágyazási mélység túllépve."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "Nem állíthatja be magát szülőként."
+msgstr ""
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr "Nem lehet szülőt beállítani egy leszármazotthoz."
+msgstr ""
#: 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 "Hosszú szöveg"
+msgstr ""
#: 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 "ezen címke(ék) mindegyikét tartalmazza"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "nem tartalmazza ezt a címkét vagy címéket"
+msgstr ""
#: 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 "nem rendelkezik dokumentumtípussal a"
+msgstr ""
#: 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 "nincs ilyen levelezőpartner(ek).\""
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr "rendelkezik ezzel a tárolási útvonallal"
+msgstr ""
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "nem rendelkezik ezzel a tárolási útvonallal"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "egyéni mező a lekérdezés szűrésére"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "JSON-kódolású egyéni mező lekérdezési kifejezés."
+msgstr ""
#: 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 "Dokumentumcím hozzárendelése, amelynek Jinja2 sablonnak kell lennie, lásd a dokumentációt."
+msgstr ""
#: 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 "Az egyéni mező azonosítójának egész számnak kell lennie: %(id)s"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "A(z) %(id)s azonosítójú egyéni mező nem létezik"
+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 "Az egyéni mezőknek egész számok listájának vagy azonosítókat értékekhez rendelő objektumnak kell lenniük."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Néhány egyéni mező nem létezik, vagy kétszer lett megadva."
+msgstr ""
#: 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 02e83ae1f..5cc017072 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Language: id_ID\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Nilai harus berupa JSON yang valid."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Ekspresi pencarian bidang khusus tidak valid"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Operator logika {op!r} tidak valid"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Jumlah maksimal kondisi pencarian terlampaui."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} bukan bidang khusus yang valid."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} tidak mendukung ekspresi pencarian expr {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Kedalaman susunan maksimal terlampaui."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 5c5bce0ac..db3a2c6ab 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Language: it_IT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenti"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Il valore deve essere un JSON valido."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Campo personalizzato della query non valido"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Elenco delle espressioni non valido. Deve essere non vuoto."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Operatore logico non valido {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Numero massimo delle condizioni della jQuery superato."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} non è un campo personalizzato valido."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} Non supporta la jQuery Expo {Expo!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Superata la profondità massima di nidificazione."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "ha tutte queste etichette"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "non ha queste etichette"
+msgstr ""
#: 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 "non ha questi tipi di documento"
+msgstr ""
#: 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 "non ha questi corrispondenti"
+msgstr ""
#: 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 "non ha questo percorso di archiviazione"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
@@ -898,7 +898,7 @@ msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
-msgstr "giorni di offset della schedulazione"
+msgstr ""
#: 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 "Il corpo da inviare con l'URL del webhook se i parametri non vengono utilizzati."
+msgstr ""
#: documents/models.py:1257
msgid "webhook headers"
-msgstr "header Webhook"
+msgstr ""
#: documents/models.py:1260
msgid "The headers to send with the webhook URL."
-msgstr "Le intestazioni da inviare con l'URL del webhook."
+msgstr ""
#: documents/models.py:1265
msgid "include document in webhook"
-msgstr "includi documento nel webhook"
+msgstr ""
#: 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 "Assegnare un titolo del documento, deve essere un modello Jinja2, vedere la documentazione."
+msgstr ""
#: 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 "trigger"
+msgstr ""
#: documents/models.py:1541
msgid "actions"
@@ -1202,11 +1202,11 @@ msgstr "data esecuzione"
#: documents/models.py:1579
msgid "workflow run"
-msgstr "esecuzione del workflow"
+msgstr ""
#: documents/models.py:1580
msgid "workflow runs"
-msgstr "esecuzione del workflow"
+msgstr ""
#: 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 "L'id del campo personalizzato deve essere un intero: %(id)s"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "Il campo personalizzato con id %(id)s non esiste"
+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 "I campi personalizzati devono essere un elenco di interi o un id di mappatura."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Alcuni campi personalizzati non esistono o sono stati specificati due volte."
+msgstr ""
#: 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 "Schema URI '{parts.scheme}' non è consentito. Schemi consentiti: {', '.join(allowed_schemes)}"
+msgstr ""
#: 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 "Controlla la pulizia della carta"
+msgstr ""
#: paperless/models.py:138
msgid "Enables deskew"
@@ -1635,15 +1635,15 @@ msgstr "Logo applicazione"
#: paperless/models.py:197
msgid "Enables barcode scanning"
-msgstr "Abilita scansione codici a barre"
+msgstr ""
#: paperless/models.py:203
msgid "Enables barcode TIFF support"
-msgstr "Abilita il supporto TIFF del codice a barre"
+msgstr ""
#: paperless/models.py:209
msgid "Sets the barcode string"
-msgstr "Imposta la stringa del barcode"
+msgstr ""
#: 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 "Imposta il fattore di ingrandimento del codice a barre"
+msgstr ""
#: paperless/models.py:244
msgid "Sets the barcode DPI"
-msgstr "Imposta il DPI codice a barre"
+msgstr ""
#: 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 "Imposta la mappatura dei codici a barre dei tag"
+msgstr ""
#: 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 585880f74..def408d8a 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Language: ja_JP\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "ドキュメント"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "値は有効なJSONである必要があります。"
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "無効なカスタムフィールドクエリ式"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "無効な式リストです。空であってはなりません。"
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "無効な論理演算子 {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "クエリ条件の最大数を超えました。"
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} は有効なカスタムフィールドではありません。"
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。"
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "最大ネストの深さを超えました。"
-#: documents/filters.py:854
+#: documents/filters.py:845
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 953806d6f..e798b1e7d 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-25 00:35\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Language: ko_KR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "문서"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "값은 유효한 JSON이어야 합니다."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "잘못된 사용자 정의 필드 쿼리 표현식"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "잘못된 논리 연산자 {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "쿼리 조건의 최대 개수를 초과했습니다."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "최대 중첩 깊이를 초과했습니다."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 589c2c32c..7fafd2ce1 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Luxembourgish\n"
"Language: lb_LU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 4447af87f..c358f7b3c 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Language: lt_LT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumentai"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Neteisingas išraiškos sąrašas. Jis turi būti netuščias."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Neteisingas loginis operatorius {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Viršytas maksimalus užklausos sąlygų skaičius."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nėra galiojantis pasirinktas laukas."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepalaiko užklausos išraiškos {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Viršytas maksimalus įdėjimo gylis."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 dbcfea250..e3bb51577 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Language: lv_LV\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokuments"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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
deleted file mode 100644
index 5f72d7290..000000000
--- a/src/locale/mk_MK/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,2154 +0,0 @@
-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 169a93962..922e9fc9e 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Malay\n"
"Language: ms_MY\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumen"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 633c2c3dc..28dd3ded0 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Language: nl_NL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documenten"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Waarde moet een geldige JSON zijn."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} is geen geldig aangepast veld."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 4d6e0d80a..07844cdb1 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenter"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Verdien må være en gyldig JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 01f73664e..91e3a3940 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-27 00:26\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Language: pl_PL\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Wartość musi być prawidłowym JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Nieprawidłowa lista wyrażeń. Nie może być pusta."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Nieprawidłowy operator logiczny {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Maksymalna liczba warunków zapytania została przekroczona."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie jest prawidłowym polem niestandardowym."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nie obsługuje wyrażenia zapytania {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Przekroczono maksymalną głębokość zagnieżdżenia."
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr "Nie znaleziono pola niestandardowego"
@@ -136,11 +136,11 @@ msgstr "tagi"
#: documents/models.py:123
msgid "Cannot set itself as parent."
-msgstr "Nie można ustawić siebie jako nadrzędnego."
+msgstr ""
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr "Nie można ustawić nadrzędnego jako potomnego."
+msgstr ""
#: documents/models.py:142 documents/models.py:190
msgid "document type"
@@ -156,11 +156,11 @@ msgstr "ścieżka"
#: documents/models.py:152 documents/models.py:179
msgid "storage path"
-msgstr "Ścieżka zapisu"
+msgstr "ścieżka zapisu"
#: documents/models.py:153
msgid "storage paths"
-msgstr "Ścieżki zapisu"
+msgstr "ścieżki zapisu"
#: documents/models.py:160
msgid "Unencrypted"
@@ -204,7 +204,7 @@ msgstr "Suma kontrolna zarchiwizowanego dokumentu."
#: documents/models.py:229
msgid "page count"
-msgstr "Liczba stron"
+msgstr "liczba stron"
#: documents/models.py:236
msgid "The number of pages of the document."
@@ -245,7 +245,7 @@ msgstr "Aktualna nazwa pliku archiwum w pamięci"
#: documents/models.py:289
msgid "original filename"
-msgstr "Oryginalna nazwa pliku"
+msgstr "oryginalna nazwa pliku"
#: documents/models.py:295
msgid "The original name of the file when it was uploaded"
@@ -758,7 +758,7 @@ msgstr "Lista"
#: documents/models.py:795
msgid "Long Text"
-msgstr "Pełny tekst"
+msgstr ""
#: documents/models.py:807
msgid "data type"
@@ -858,11 +858,11 @@ msgstr "posiada wskazane tag(i)"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr "Zawiera wszystkie podane tagi"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "Nie zawiera żadnego z podanych tagów"
+msgstr ""
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "posiada wskazany typ dokumentu"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr "Nie posiada typów dokumentów"
+msgstr ""
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,23 +878,23 @@ msgstr "posiada wskazanego nadawcę"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr "nie posiada korespondenta(-ów)"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr "ma tę ścieżkę zapisu"
+msgstr ""
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "nie ma tej ścieżki/ścieżek zapisu"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "filtruj zapytanie pola niestandardowego"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "Niestandardowe wyrażenie zapytania pola zakodowane w formacie JSON."
+msgstr ""
#: 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 "Przypisz tytuł dokumentu, musi być szablonem Jinja2, zobacz dokumentację."
+msgstr ""
#: 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 "Identyfikator pola niestandardowego musi być liczbą całkowitą: %(id)s"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "Pole niestandardowe z id %(id)s nie istnieje"
+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 "Pola niestandardowe muszą być listą liczb całkowitych lub obiektem mapującym identyfikatory na wartości."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Niektóre niestandardowe pola nie istnieją lub zostały określone dwukrotnie."
+msgstr ""
#: 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 "Nie można przeanalizować URI {value}, brak schematu"
+msgstr ""
#: documents/validators.py:29
#, python-brace-format
msgid "Unable to parse URI {value}, missing net location or path"
-msgstr "Nie można przeanalizować URI {value}, brak lokalizacji sieciowej lub ścieżki"
+msgstr ""
#: documents/validators.py:36
msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}"
-msgstr "Schemat URI '{parts.scheme}' jest niedozwolony. Dozwolone schematy: {', '.join(allowed_schemes)}"
+msgstr ""
#: documents/validators.py:45
#, python-brace-format
msgid "Unable to parse URI {value}"
-msgstr "Nie można przetworzyć URI {value}"
+msgstr ""
#: paperless/apps.py:11
msgid "Paperless"
@@ -1815,7 +1815,7 @@ msgstr "Ukraiński"
#: paperless/settings.py:806
msgid "Vietnamese"
-msgstr "Wietnamski"
+msgstr ""
#: 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 d5f47bd0f..61bfa5125 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\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:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "O valor deve ser um JSON válido."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválida"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Deve estar não vazia."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Número máximo de condições de consulta excedido."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:561
+#: documents/filters.py:552
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:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Profundidade máxima do aninhamento excedida."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "possui toda(s) esta(s) etiqueta(s)"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "não possui esta(s) etiqueta(s)"
+msgstr ""
#: 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 "não possui este(s) tipo(s) de documento"
+msgstr ""
#: 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 "não possui este(s) correspondente(s)"
+msgstr ""
#: 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 "não possui este(s) caminho(s) de armazenamento"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "Filtrar consulta de campo personalizado"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "Expressão de consulta de campo personalizado codificada em JSON."
+msgstr ""
#: 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 "Solicitação de redefinição de senha Paperless-ngx"
+msgstr "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 4af8699b6..d6fb4c833 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documentos"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "O valor deve ser JSON válido."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Expressão de consulta de campo personalizado inválido"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Lista de expressões inválida. Não deve estar vazia."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Operador lógico inválido {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "O número máximo de condições de consulta foi excedido."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} não é um campo personalizado válido."
-#: documents/filters.py:561
+#: documents/filters.py:552
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:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 ff3752cde..5e09d9f60 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Language: ro_RO\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Documente"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 fa4ced9c9..0ed465101 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документы"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Значение должно быть корректным JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Неверное выражение запроса пользовательского поля"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Недопустимый список выражений. Не может быть пустым."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Недопустимый логический оператор {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Превышено максимальное количество условий запроса."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} не является допустимым пользовательским полем."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} не поддерживает запрос {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Превышена максимальная глубина вложения."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 eaee3a3e9..4e273c8bd 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"Language: sk_SK\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenty"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Hodnota musí byť vo validnom formáte JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Neplatný výraz požiadavky na vlastné pole"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Neplatný logický operátor {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Prekročili ste maximálny počet podmienok požiadavky."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nie je platné vlastné pole."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} nepodporuje výraz požiadavky {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Bola prekročená maximálna hĺbka vetvenia."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 77f579287..69f6183f8 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-28 12:15\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"Language: sl_SI\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokumenti"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Vrednost mora biti veljaven JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Neveljaven izraz poizvedbe po polju po meri"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Neveljaven seznam izrazov. Ne sme biti prazen."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Neveljaven logični operator {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Preseženo je bilo največje dovoljeno število pogojev poizvedbe."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ni veljavno polje po meri."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podpira izraza poizvedbe {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Presežena je bila največja globina gnezdenja."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 7d156b01b..8255b4f0e 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\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:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Vrednost mora da bude važeći JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Nevažeći izraz upita prilagođen polja"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Nevažeća lista izraza. Ne sme biti prazna."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Nevažeći logični operator {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Premašen je maksimalni broj uslova u upitu."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} nije validno prilagođeno polje."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ne podržava izraz u upitu {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Premašena je maksimalna dubina grananja."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 3585184eb..dd7fbf58b 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Dokument"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Värdet måste vara giltigt JSON."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Ogiltigt sökordsuttryck för anpassade fält"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Ogiltig uttryckslista. Får inte vara tom."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Ogiltig logisk operator {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "Maximalt antal frågevillkor överskrids."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} är inte ett giltigt anpassat fält."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} stöder inte frågan expr {expr!r}."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Maximalt antal nästlade nivåer överskrids."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 d1a3323a8..84aed6222 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Language: th_TH\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "เอกสาร"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง"
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง"
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด"
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง"
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}"
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด"
-#: documents/filters.py:854
+#: documents/filters.py:845
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 c9466ab92..7700f2927 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-25 12:16\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Belgeler"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Değer geçerli bir JSON olmalıdır."
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "Geçersiz özel alan sorgu ifadesi"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "Geçersiz ifade listesi. Boş olmamalıdır."
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Geçersiz mantıksal işleç {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "En çok sorgu koşulu sayısı aşıldı."
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} geçerli bir özel alan değil."
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type}, {expr!r} sorgu ifadesini desteklemiyor."
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "En çok iç içe geçme izni aşıldı."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "Kendinizi bir üst düğüm olarak seçemezsiniz."
+msgstr ""
#: documents/models.py:125
msgid "Cannot set parent to a descendant."
-msgstr "Bir üst düğüm alt düğüm olarak seçilemez."
+msgstr ""
#: 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 "Uzun Metin"
+msgstr ""
#: 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 "bu etiket veya etiketlerine sahip"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "bu etiket veya etiketlerine sahip değil"
+msgstr ""
#: 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 "bu belge tür veya türlerine sahip değil"
+msgstr ""
#: 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 "bu muhatablara sahip değil"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr "bu depolama yoluna sahip"
+msgstr ""
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "bu depolama dizin veya dizinleri mevcut değil"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "özel alanlara göre filtrele"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "JSON olarak verilmiş özel alan sorgu ifadesi."
+msgstr ""
#: 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 "Dökuman bașlıkları, Jinja2 taslağı olmalıdır, bakınız."
+msgstr ""
#: 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 "%(id)s özel alan numarası tam sayı olmalıdır"
+msgstr ""
#: documents/serialisers.py:1856
#, python-format
msgid "Custom field with id %(id)s does not exist"
-msgstr "%(id)s numaralı özel alan mevcut değil"
+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 "Özel alanlar bir tam sayı olarak veya bir nesne haritası numaraları olmalıdır."
+msgstr ""
#: documents/serialisers.py:1878
msgid "Some custom fields don't exist or were specified twice."
-msgstr "Bazı õzel alan numaraları mevcut değil yada iki kez tanımlanmıș."
+msgstr ""
#: 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 8aea4838c..56f9853e2 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Language: uk_UA\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "Документи"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
-msgstr "Значення має бути коректним JSON."
+msgstr ""
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr ""
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr ""
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr ""
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr ""
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr ""
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr ""
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr ""
-#: documents/filters.py:854
+#: documents/filters.py:845
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 160ccc6d2..b545e9a4d 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\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:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "Giá trị phải là JSON hợp lệ."
-#: documents/filters.py:414
+#: documents/filters.py:405
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:424
+#: documents/filters.py:415
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:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "Toán tử lô-gic không hợp lệ {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
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:524
+#: documents/filters.py:515
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:561
+#: documents/filters.py:552
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:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "Đã vượt quá độ sâu lồng nhau tối đa."
-#: documents/filters.py:854
+#: documents/filters.py:845
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 "Không thể tự đặt thành thư mục gốc"
+msgstr ""
#: 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 "Văn bản dài"
+msgstr ""
#: 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 "có tất cả thẻ này"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "không có các thẻ này"
+msgstr ""
#: 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 "không có các loại tài liệu này"
+msgstr ""
#: 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 "không có các biên tập viên này"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
-msgstr "có đường dẫn lưu trữ này"
+msgstr ""
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "không có các đường dẫn lưu trữ này"
+msgstr ""
#: 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 88977f806..330487011 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-14 16:11\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文档"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "值必须是有效的 JSON 格式。"
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "无效的自定义字段查询表达式"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "无效的表达式列表。必须不为空。"
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "无效的逻辑运算符 {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "超出查询条件的最大数量。"
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是一个有效的自定义字段。"
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支持查询表达式 {expr!r}。"
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超出最大嵌套深度。"
-#: documents/filters.py:854
+#: documents/filters.py:845
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 d3b895dde..c32ae563c 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-11-14 16:09+0000\n"
-"PO-Revision-Date: 2025-11-20 12:15\n"
+"POT-Creation-Date: 2025-10-22 18:15+0000\n"
+"PO-Revision-Date: 2025-10-22 18:18\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Language: zh_TW\n"
@@ -21,39 +21,39 @@ msgstr ""
msgid "Documents"
msgstr "文件"
-#: documents/filters.py:395
+#: documents/filters.py:386
msgid "Value must be valid JSON."
msgstr "參數值必須是有效的 JSON。"
-#: documents/filters.py:414
+#: documents/filters.py:405
msgid "Invalid custom field query expression"
msgstr "無效的自訂欄位查詢表達式"
-#: documents/filters.py:424
+#: documents/filters.py:415
msgid "Invalid expression list. Must be nonempty."
msgstr "無效的表達式列表,不能為空。"
-#: documents/filters.py:445
+#: documents/filters.py:436
msgid "Invalid logical operator {op!r}"
msgstr "無效的邏輯運算符 {op!r}"
-#: documents/filters.py:459
+#: documents/filters.py:450
msgid "Maximum number of query conditions exceeded."
msgstr "超過查詢條件的最大數量。"
-#: documents/filters.py:524
+#: documents/filters.py:515
msgid "{name!r} is not a valid custom field."
msgstr "{name!r} 不是有效的自訂欄位。"
-#: documents/filters.py:561
+#: documents/filters.py:552
msgid "{data_type} does not support query expr {expr!r}."
msgstr "{data_type} 不支援查詢表達式 {expr!r}。"
-#: documents/filters.py:669 documents/models.py:135
+#: documents/filters.py:660 documents/models.py:135
msgid "Maximum nesting depth exceeded."
msgstr "超過最大巢狀深度。"
-#: documents/filters.py:854
+#: documents/filters.py:845
msgid "Custom field not found"
msgstr "找不到自訂欄位"
@@ -858,11 +858,11 @@ msgstr "具有這些標籤"
#: documents/models.py:1072
msgid "has all of these tag(s)"
-msgstr "標籤符合"
+msgstr ""
#: documents/models.py:1079
msgid "does not have these tag(s)"
-msgstr "標籤不包含"
+msgstr ""
#: documents/models.py:1087
msgid "has this document type"
@@ -870,7 +870,7 @@ msgstr "具有此文件類型"
#: documents/models.py:1094
msgid "does not have these document type(s)"
-msgstr "文件類型不包含"
+msgstr ""
#: documents/models.py:1102
msgid "has this correspondent"
@@ -878,7 +878,7 @@ msgstr "具有此關聯方"
#: documents/models.py:1109
msgid "does not have these correspondent(s)"
-msgstr "關聯方不包含"
+msgstr ""
#: documents/models.py:1117
msgid "has this storage path"
@@ -886,15 +886,15 @@ msgstr "使用此儲存路徑"
#: documents/models.py:1124
msgid "does not have these storage path(s)"
-msgstr "儲存路徑不包含"
+msgstr ""
#: documents/models.py:1128
msgid "filter custom field query"
-msgstr "篩選自訂欄位查詢"
+msgstr ""
#: documents/models.py:1131
msgid "JSON-encoded custom field query expression."
-msgstr "JSON-encoded 的自訂欄位查詢表達式。"
+msgstr ""
#: documents/models.py:1135
msgid "schedule offset days"
diff --git a/src/paperless/adapter.py b/src/paperless/adapter.py
index a4506275e..f8517a3aa 100644
--- a/src/paperless/adapter.py
+++ b/src/paperless/adapter.py
@@ -137,25 +137,3 @@ 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 97b84fd14..754a3c594 100644
--- a/src/paperless/serialisers.py
+++ b/src/paperless/serialisers.py
@@ -9,7 +9,6 @@ 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
@@ -20,23 +19,6 @@ 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",
@@ -67,7 +49,7 @@ class PaperlessAuthTokenSerializer(AuthTokenSerializer):
return attrs
-class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer):
+class UserSerializer(serializers.ModelSerializer):
password = ObfuscatedPasswordField(required=False)
user_permissions = serializers.SlugRelatedField(
many=True,
@@ -105,11 +87,11 @@ class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer):
return obj.get_group_permissions()
def update(self, instance, validated_data):
- password = validated_data.pop("password", None)
- if self._has_real_password(password):
- instance.set_password(password)
- instance.save()
-
+ 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")
super().update(instance, validated_data)
return instance
@@ -120,7 +102,12 @@ class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer):
user_permissions = None
if "user_permissions" in validated_data:
user_permissions = validated_data.pop("user_permissions")
- password = validated_data.pop("password", None)
+ password = None
+ if (
+ "password" in validated_data
+ and len(validated_data.get("password").replace("*", "")) > 0
+ ):
+ password = validated_data.pop("password")
user = User.objects.create(**validated_data)
# set groups
if groups:
@@ -129,7 +116,7 @@ class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer):
if user_permissions:
user.user_permissions.set(user_permissions)
# set password
- if self._has_real_password(password):
+ if password:
user.set_password(password)
user.save()
return user
@@ -169,7 +156,7 @@ class SocialAccountSerializer(serializers.ModelSerializer):
return "Unknown App"
-class ProfileSerializer(PasswordValidationMixin, serializers.ModelSerializer):
+class ProfileSerializer(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 cfad29dbd..a173ccc2e 100644
--- a/src/paperless/signals.py
+++ b/src/paperless/signals.py
@@ -38,19 +38,10 @@ def handle_social_account_updated(sender, request, sociallogin, **kwargs):
"""
from django.contrib.auth.models import Group
- extra_data = sociallogin.account.extra_data or {}
- social_account_groups = extra_data.get(
+ social_account_groups = sociallogin.account.extra_data.get(
"groups",
[],
- ) # 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 []
- )
+ ) # None if not found
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 37b8aaa3b..b87c47096 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.internal.ratelimit.consume", return_value=True)
- def test_pre_authenticate(self, mock_consume):
+ @mock.patch("allauth.core.ratelimit._consume_rate", return_value=True)
+ def test_pre_authenticate(self, mock_consume_rate):
adapter = get_adapter()
request = HttpRequest()
request.get_host = mock.Mock(return_value="example.com")
@@ -167,17 +167,3 @@ 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 a21f3b660..a77580b7b 100644
--- a/src/paperless/tests/test_signals.py
+++ b/src/paperless/tests/test_signals.py
@@ -192,68 +192,6 @@ 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 2d0b1f4f6..2f7315f71 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, 20, 1)
+__version__: Final[tuple[int, int, int]] = (2, 19, 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 e79c0e668..fc5bb5463 100644
--- a/src/paperless/views.py
+++ b/src/paperless/views.py
@@ -125,10 +125,6 @@ class UserViewSet(ModelViewSet):
def update(self, request, *args, **kwargs):
user_to_update: User = self.get_object()
- if not request.user.is_superuser and user_to_update.is_superuser:
- return HttpResponseForbidden(
- "Superusers can only be modified by other superusers",
- )
if (
not request.user.is_superuser
and request.data.get("is_superuser") is not None
@@ -197,10 +193,10 @@ class ProfileView(GenericAPIView):
serializer.is_valid(raise_exception=True)
user = self.request.user if hasattr(self.request, "user") else None
- password = serializer.validated_data.pop("password", None)
- if password and password.replace("*", ""):
- user.set_password(password)
+ if len(serializer.validated_data.get("password").replace("*", "")) > 0:
+ user.set_password(serializer.validated_data.get("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 08b5d9647..f2050451b 100644
--- a/src/paperless_mail/oauth.py
+++ b/src/paperless_mail/oauth.py
@@ -103,9 +103,6 @@ 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 38817d673..e6c2db15a 100644
--- a/src/paperless_mail/templates/package-lock.json
+++ b/src/paperless_mail/templates/package-lock.json
@@ -429,21 +429,23 @@
}
},
"node_modules/glob": {
- "version": "10.5.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
- "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
+ "version": "10.4.1",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz",
+ "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==",
"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"
}
@@ -694,12 +696,6 @@
"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",
@@ -1698,16 +1694,15 @@
"dev": true
},
"glob": {
- "version": "10.5.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
- "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
+ "version": "10.4.1",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz",
+ "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==",
"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"
}
},
@@ -1880,12 +1875,6 @@
"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 aaac68cc4..97747ceab 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 c1fd52d43..584cd5d64 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 fd052cc26..e1febb1e5 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,9 +90,7 @@ class TestUrlCanary:
"""
# Now check the URL used in samples/sample.html
- resp = httpx.get(
- "https://docs.paperless-ngx.com/assets/logo_full_white.svg",
- )
+ resp = httpx.get("https://upload.wikimedia.org/wikipedia/en/f/f7/RickRoll.png")
resp.raise_for_status()
diff --git a/uv.lock b/uv.lock
index ff0bb6b5b..75cf7ea5c 100644
--- a/uv.lock
+++ b/uv.lock
@@ -129,14 +129,14 @@ wheels = [
[[package]]
name = "bleach"
-version = "6.3.0"
+version = "6.2.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/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -676,26 +676,26 @@ wheels = [
[[package]]
name = "django"
-version = "5.2.7"
+version = "5.2.6"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "sqlparse", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/b1/96/bd84e2bb997994de8bcda47ae4560991084e86536541d7214393880f01a8/django-5.2.7.tar.gz", hash = "sha256:e0f6f12e2551b1716a95a63a1366ca91bbcd7be059862c1b18f989b1da356cdd", size = 10865812, upload-time = "2025-10-01T14:22:12.081Z" }
+sdist = { url = "https://files.pythonhosted.org/packages/4c/8c/2a21594337250a171d45dda926caa96309d5136becd1f48017247f9cdea0/django-5.2.6.tar.gz", hash = "sha256:da5e00372763193d73cecbf71084a3848458cecf4cee36b9a1e8d318d114a87b", size = 10858861, upload-time = "2025-09-03T13:04:03.23Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/8f/ef/81f3372b5dd35d8d354321155d1a38894b2b766f576d0abffac4d8ae78d9/django-5.2.7-py3-none-any.whl", hash = "sha256:59a13a6515f787dec9d97a0438cd2efac78c8aca1c80025244b0fe507fe0754b", size = 8307145, upload-time = "2025-10-01T14:22:49.476Z" },
+ { url = "https://files.pythonhosted.org/packages/f5/af/6593f6d21404e842007b40fdeb81e73c20b6649b82d020bb0801b270174c/django-5.2.6-py3-none-any.whl", hash = "sha256:60549579b1174a304b77e24a93d8d9fafe6b6c03ac16311f3e25918ea5a20058", size = 8303111, upload-time = "2025-09-03T13:03:47.808Z" },
]
[[package]]
name = "django-allauth"
-version = "65.12.1"
+version = "65.4.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/52/94/75d7f8c59e061d1b66a6d917b287817fe02d2671c9e6376a4ddfb3954989/django_allauth-65.12.1.tar.gz", hash = "sha256:662666ff2d5c71766f66b1629ac7345c30796813221184e13e11ed7460940c6a", size = 1967971, upload-time = "2025-10-16T16:39:58.342Z" }
+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" }
[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.3.0"
+version = "3.2.1"
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/37/d8/ddd1c653ffb7ed1984596420982e32a0b163a0be316721a801a54dcbf016/django_auditlog-3.3.0.tar.gz", hash = "sha256:01331a0e7bb1a8ff7573311b486c88f3d0c431c388f5a1e4a9b6b26911dd79b8", size = 85941, upload-time = "2025-10-02T17:16:27.591Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -787,14 +787,14 @@ wheels = [
[[package]]
name = "django-filter"
-version = "25.2"
+version = "25.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/2c/e4/465d2699cd388c0005fb8d6ae6709f239917c6d8790ac35719676fffdcf3/django_filter-25.2.tar.gz", hash = "sha256:760e984a931f4468d096f5541787efb8998c61217b73006163bf2f9523fe8f23", size = 143818, upload-time = "2025-10-05T09:51:31.521Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -959,14 +959,14 @@ wheels = [
[[package]]
name = "drf-spectacular-sidecar"
-version = "2025.10.1"
+version = "2025.9.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/c3/e4/99cd1b1c8c69788bd6cb6a2459674f8c75728e79df23ac7beddd094bf805/drf_spectacular_sidecar-2025.10.1.tar.gz", hash = "sha256:506a5a21ce1ad7211c28acb4e2112e213f6dc095a2052ee6ed6db1ffe8eb5a7b", size = 2420998, upload-time = "2025-10-01T11:23:27.092Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -1783,19 +1783,19 @@ wheels = [
[[package]]
name = "mkdocs-glightbox"
-version = "0.5.2"
+version = "0.5.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "selectolax", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
-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" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
name = "mkdocs-material"
-version = "9.7.0"
+version = "9.6.22"
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/9c/3b/111b84cd6ff28d9e955b5f799ef217a17bc1684ac346af333e6100e413cb/mkdocs_material-9.7.0.tar.gz", hash = "sha256:602b359844e906ee402b7ed9640340cf8a474420d02d8891451733b6b02314ec", size = 4094546, upload-time = "2025-11-11T08:49:09.73Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -2077,7 +2077,7 @@ wheels = [
[[package]]
name = "ocrmypdf"
-version = "16.12.0"
+version = "16.11.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/2b/ed/dacc0f189e4fcefc52d709e9961929e3f622a85efa5ae47c9d9663d75cab/ocrmypdf-16.12.0.tar.gz", hash = "sha256:a0f6509e7780b286391f8847fae1811d2b157b14283ad74a2431d6755c5c0ed0", size = 7037326, upload-time = "2025-11-11T22:30:14.223Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -2115,7 +2115,7 @@ wheels = [
[[package]]
name = "paperless-ngx"
-version = "2.20.1"
+version = "2.19.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.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-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-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.3.0" },
+ { name = "bleach", specifier = "~=6.2.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.12.1" },
- { name = "django-auditlog", specifier = "~=3.3.0" },
+ { name = "django-allauth", extras = ["socialaccount", "mfa"], specifier = "~=65.4.0" },
+ { name = "django-auditlog", specifier = "~=3.2.1" },
{ 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.10.1" },
+ { name = "drf-spectacular-sidecar", specifier = "~=2025.9.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.12.0" },
+ { name = "ocrmypdf", specifier = "~=16.11.0" },
{ name = "pathvalidate", specifier = "~=3.3.1" },
{ name = "pdf2image", specifier = "~=1.17.0" },
- { 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 = "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 = "python-dateutil", specifier = "~=2.9.0" },
- { name = "python-dotenv", specifier = "~=1.2.1" },
+ { name = "python-dotenv", specifier = "~=1.1.0" },
{ 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.7.0" },
- { name = "pre-commit", specifier = "~=4.4.0" },
+ { name = "mkdocs-material", specifier = "~=9.6.4" },
+ { name = "pre-commit", specifier = "~=4.3.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.7.0" },
+ { name = "mkdocs-material", specifier = "~=9.6.4" },
]
lint = [
- { name = "pre-commit", specifier = "~=4.4.0" },
+ { name = "pre-commit", specifier = "~=4.3.0" },
{ name = "pre-commit-uv", specifier = "~=4.2.0" },
{ name = "ruff", specifier = "~=0.14.0" },
]
@@ -2475,7 +2475,7 @@ wheels = [
[[package]]
name = "pikepdf"
-version = "10.0.2"
+version = "9.11.0"
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/f7/79/9a63d5ccac66ace679cf93c84894db15074fe849d41cd39232cb09ec8819/pikepdf-10.0.2.tar.gz", hash = "sha256:7c85a2526253e35575edb2e28cdc740d004be4b7c5fda954f0e721ee1c423a52", size = 4548116, upload-time = "2025-11-10T18:10:08.765Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -2625,7 +2625,7 @@ wheels = [
[[package]]
name = "pre-commit"
-version = "4.4.0"
+version = "4.3.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/a6/49/7845c2d7bf6474efd8e27905b51b11e6ce411708c91e829b93f324de9929/pre_commit-4.4.0.tar.gz", hash = "sha256:f0233ebab440e9f17cabbb558706eb173d19ace965c68cdce2c081042b4fab15", size = 197501, upload-time = "2025-11-08T21:12:11.607Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -2675,21 +2675,21 @@ wheels = [
[[package]]
name = "psycopg"
-version = "3.2.12"
+version = "3.2.9"
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/a8/77/c72d10262b872617e509a0c60445afcc4ce2cd5cd6bc1c97700246d69c85/psycopg-3.2.12.tar.gz", hash = "sha256:85c08d6f6e2a897b16280e0ff6406bef29b1327c045db06d21f364d7cd5da90b", size = 160642, upload-time = "2025-10-26T00:46:03.045Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[package.optional-dependencies]
c = [
- { 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'" },
+ { 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'" },
]
pool = [
{ name = "psycopg-pool", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
@@ -2697,7 +2697,7 @@ pool = [
[[package]]
name = "psycopg-c"
-version = "3.2.12"
+version = "3.2.9"
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/68/27/33699874745d7bb195e78fd0a97349908b64d3ec5fea7b8e5e52f56df04c/psycopg_c-3.2.12.tar.gz", hash = "sha256:1c80042067d5df90d184c6fbd58661350b3620f99d87a01c882953c4d5dfa52b", size = 608386, upload-time = "2025-10-26T00:46:08.727Z" }
+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" }
[[package]]
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" }
+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" }
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-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl", hash = "sha256:3492dc3760133ce8b422786136f41763acaa2dc890d3ab3e58b49627fd1e4e92" },
+ { 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" },
]
[[package]]
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" }
+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" }
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-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl", hash = "sha256:64ca43e3521a761c2ae5ea883c71bae619abe0e6392d388424776c93e55de8a8" },
+ { 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" },
]
[[package]]
name = "psycopg-pool"
-version = "3.2.7"
+version = "3.2.6"
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/9d/8f/3ec52b17087c2ed5fa32b64fd4814dde964c9aa4bd49d0d30fc24725ca6d/psycopg_pool-3.2.7.tar.gz", hash = "sha256:a77d531bfca238e49e5fb5832d65b98e69f2c62bfda3d2d4d833696bdc9ca54b", size = 29765, upload-time = "2025-10-26T00:46:10.379Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -2954,11 +2954,11 @@ wheels = [
[[package]]
name = "python-dotenv"
-version = "1.2.1"
+version = "1.1.1"
source = { registry = "https://pypi.org/simple" }
-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" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -3173,70 +3173,78 @@ wheels = [
[[package]]
name = "rapidfuzz"
-version = "3.14.3"
+version = "3.14.1"
source = { registry = "https://pypi.org/simple" }
-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" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -3371,6 +3379,19 @@ 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"
@@ -3502,25 +3523,25 @@ wheels = [
[[package]]
name = "ruff"
-version = "0.14.5"
+version = "0.14.0"
source = { registry = "https://pypi.org/simple" }
-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" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -3968,14 +3989,14 @@ wheels = [
[[package]]
name = "types-bleach"
-version = "6.3.0.20251115"
+version = "6.2.0.20250809"
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/5f/54/3e0d9e2e0d7a00cf9b1a2c35160038c8bf5cb7ad80003c5d7e4e5af1e9dd/types_bleach-6.3.0.20251115.tar.gz", hash = "sha256:96911b20f169a18524d03b61fa7e98a08c411292f7cdb5dc191057f55dad9ae3", size = 11452, upload-time = "2025-11-15T03:00:28.919Z" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
@@ -4028,11 +4049,11 @@ wheels = [
[[package]]
name = "types-markdown"
-version = "3.10.0.20251106"
+version = "3.9.0.20250906"
source = { registry = "https://pypi.org/simple" }
-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" }
+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" }
wheels = [
- { 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" },
+ { 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" },
]
[[package]]
|