From 6684e80ffc4aae9a98229481ee619adebcce98fb Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 06:18:41 -0800 Subject: [PATCH 01/10] Fix: mark 'Select' button in doc list for translation (#11278) --- .../app/components/document-list/document-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index a6d23f2a5..ef11e44f9 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -15,7 +15,7 @@
- Select: + Select:
@if (list.selected.size > 0) { From 906e841ded668bd7e5b3e06b5b173c1e4b97cf7f Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 14:21:38 +0000 Subject: [PATCH 02/10] Auto translate strings --- src-ui/messages.xlf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 977539289..0b590cbdf 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -7888,6 +7888,13 @@ 308 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + None From a9dfe8f3f7057238c596e2804883bf4f5bd916ba Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:42:29 -0800 Subject: [PATCH 03/10] Fix: use original_file when attaching docs to workflow emails with added trigger (#11266) --- src/documents/signals/handlers.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 8862b064b..22abf625e 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -31,6 +31,8 @@ from guardian.shortcuts import remove_perm from documents import matching from documents.caching import clear_document_caches +from documents.data_models import ConsumableDocument +from documents.data_models import DocumentSource 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 @@ -55,7 +57,6 @@ from documents.templating.workflows import parse_w_workflow_placeholders if TYPE_CHECKING: from documents.classifier import DocumentClassifier - from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides logger = logging.getLogger("paperless.handlers") @@ -1163,8 +1164,21 @@ def run_workflows( ) try: attachments = [] - if action.email.include_document and original_file: - attachments = [document] + if action.email.include_document: + if trigger_type in [ + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + WorkflowTrigger.WorkflowTriggerType.SCHEDULED, + ]: + # Updated and scheduled can pass the document directly + attachments = [document] + elif original_file: + # For consumed and added document is not yet saved, so pass the original file + attachments = [ + ConsumableDocument( + source=DocumentSource.ApiUpload, + original_file=original_file, + ), + ] n_messages = send_email( subject=subject, body=body, From 2a4e8f9acd98bfb1c1cc9f0d3f6d78320e6aad6e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 09:46:35 -0800 Subject: [PATCH 04/10] Performance: re-enable virtual scroll, bump ng-select (#11279) --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 12 ++++++------ .../custom-fields-query-dropdown.component.html | 1 + .../common/input/select/select.component.html | 1 + .../common/input/tags/tags.component.spec.ts | 2 +- .../components/common/input/tags/tags.component.ts | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index e75aa3a24..2589a048c 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -21,7 +21,7 @@ "@angular/platform-browser-dynamic": "~20.3.2", "@angular/router": "~20.3.2", "@ng-bootstrap/ng-bootstrap": "^19.0.1", - "@ng-select/ng-select": "^20.2.2", + "@ng-select/ng-select": "^20.6.3", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.8", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 5c75a1419..13a84f1c2 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -39,8 +39,8 @@ importers: specifier: ^19.0.1 version: 19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2) '@ng-select/ng-select': - specifier: ^20.2.2 - version: 20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) + specifier: ^20.6.3 + version: 20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) '@ngneat/dirty-check-forms': specifier: ^3.0.3 version: 3.0.3(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(lodash-es@4.17.21)(rxjs@7.8.2) @@ -2356,9 +2356,9 @@ packages: '@popperjs/core': ^2.11.8 rxjs: ^6.5.3 || ^7.4.0 - '@ng-select/ng-select@20.2.2': - resolution: {integrity: sha512-7mctt04/q9yquE4Ec1dQG+SkY6fZ2BQnJLsWmb05TCxYKAYAzDrDTgJJruPDuWrpYx+f3SwejpaI+z/GDrwYdw==} - engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + '@ng-select/ng-select@20.6.3': + resolution: {integrity: sha512-+aX2l3OshyPsyMCAuiA3ND5c6X1DG5jQjdlP8PBIyYEoQWlxEcgJWrMsPa7mHVFRpp+5KZZhnXhyosUE4CEc3w==} + engines: {node: ^22.12.0 || >=24.0.0} peerDependencies: '@angular/common': ^20.0.0 '@angular/core': ^20.0.0 @@ -9413,7 +9413,7 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@ng-select/ng-select@20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': + '@ng-select/ng-select@20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': dependencies: '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) diff --git a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html index a8973e702..7761ecb89 100644 --- a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html +++ b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html @@ -63,6 +63,7 @@ bindValue="id" [(ngModel)]="atom.value" [disabled]="disabled" + [virtualScroll]="getSelectOptionsForField(atom.field)?.length > 100" (mousedown)="$event.stopImmediatePropagation()" > } @else if (getCustomFieldByID(atom.field)?.data_type === CustomFieldDataType.DocumentLink) { diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html index eb351cbe6..3cfbfe330 100644 --- a/src-ui/src/app/components/common/input/select/select.component.html +++ b/src-ui/src/app/components/common/input/select/select.component.html @@ -29,6 +29,7 @@ [multiple]="multiple" [bindLabel]="bindLabel" bindValue="id" + [virtualScroll]="items?.length > 100" (change)="onChange(value)" (search)="onSearch($event)" (focus)="clearLastSearchTerm()" diff --git a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts index 3c69fbade..84f1c4817 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts @@ -138,7 +138,7 @@ describe('TagsComponent', () => { settingsService.currentUser = { id: 1 } let activeInstances: NgbModalRef[] modalService.activeInstances.subscribe((v) => (activeInstances = v)) - component.select.searchTerm = 'foobar' + component.select.filter('foobar') component.createTag() expect(modalService.hasOpenModals()).toBeTruthy() expect(activeInstances[0].componentInstance.object.name).toEqual('foobar') diff --git a/src-ui/src/app/components/common/input/tags/tags.component.ts b/src-ui/src/app/components/common/input/tags/tags.component.ts index 323d3ddf1..4546dabcb 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.ts @@ -169,7 +169,7 @@ export class TagsComponent implements OnInit, ControlValueAccessor { if (name) modal.componentInstance.object = { name: name } else if (this.select.searchTerm) modal.componentInstance.object = { name: this.select.searchTerm } - this.select.searchTerm = null + this.select.filter(null) this.select.detectChanges() return firstValueFrom( (modal.componentInstance as TagEditDialogComponent).succeeded.pipe( From 1d396d91603089913102084d9fa656397349c450 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:48:25 +0000 Subject: [PATCH 05/10] Auto translate strings --- src-ui/messages.xlf | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 0b590cbdf..63360c991 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3421,11 +3421,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3436,29 +3436,29 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3469,7 +3469,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3496,21 +3496,21 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 @@ -5444,7 +5444,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html From 846cc47565ce4c6f0b4f51b5cab94839cd6c0fde Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:34:23 -0800 Subject: [PATCH 06/10] New Crowdin translations by GitHub Action (#11238) --- src-ui/src/locale/messages.af_ZA.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ar_AR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.be_BY.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.bg_BG.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ca_ES.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.cs_CZ.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.da_DK.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.de_DE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.el_GR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.es_ES.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.et_EE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fa_IR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fi_FI.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fr_FR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.he_IL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.hr_HR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.hu_HU.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.id_ID.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.it_IT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ja_JP.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ko_KR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lb_LU.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lt_LT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lv_LV.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ms_MY.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.nl_NL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.no_NO.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.pl_PL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.pt_BR.xlf | 229 ++++++++++++++----------- src-ui/src/locale/messages.pt_PT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ro_RO.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ru_RU.xlf | 188 +++++++++++--------- src-ui/src/locale/messages.sk_SK.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sl_SI.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sr_CS.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sv_SE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.th_TH.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.tr_TR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.uk_UA.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.vi_VN.xlf | 188 +++++++++++--------- src-ui/src/locale/messages.zh_CN.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.zh_TW.xlf | 184 +++++++++++--------- src/locale/de_DE/LC_MESSAGES/django.po | 2 +- src/locale/pt_BR/LC_MESSAGES/django.po | 24 +-- src/locale/ru_RU/LC_MESSAGES/django.po | 4 +- src/locale/th_TH/LC_MESSAGES/django.po | 8 +- 46 files changed, 4330 insertions(+), 3489 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 959eb0f61..4e85b7bb9 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logboeke @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fout by die bewaar van instellings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Lêertake @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & Groepe @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasie @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Bewaarde aansigte @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sluit alles @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Bestuur @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-pos @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beskikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekyk. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan outomaties na bywerkings soek @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werk dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Bywerking beskikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fout by die bewaar van instellings vir soek na bywerkings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Kies alles + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index fdf4487ef..51d6b1cc8 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 الإعدادات @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 السجلات @@ -742,11 +742,35 @@ راجع ملفات السجلات للتطبيق ولفحص البريد الإلكتروني. + + 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 + + إظهار + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 حدث خطأ في أثناء حفظ الإعدادات. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ملف المهام @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 سلة المهملات @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 المستخدمين & المجموعات @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 الوثائق @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 طرق العرض المحفوظة @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 فتح المستندات @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 إغلاق الكل @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 إدارة @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 البريد @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 الإدارة @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 التهيئة @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 متوفر. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 انقر للعرض. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx يتحقق تلقائياً من وجود تحديثات @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 كيف يعمل هذا؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 يتوفر تحديث @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 تم تحديث طرق عرض الشريط الجانبي @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطأ في تحديث طرق عرض الشريط الجانبي @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ تحديد الكل + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ لا شيء - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - إظهار - Sort diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index c103f2949..cf2df56a9 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Наладкі @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логі @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Адбылася памылка пры захаванні налад. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлавыя задачы @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Дакументацыя @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Захаваныя выгляды @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Адкрыць дакументы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыць усё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Кіраванне @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 даступна. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Націсніце, каб убачыць. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як гэта працуе? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Даступна абнаўленне @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Адбылася памылка падчас захавання налад праверкі абнаўленняў. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Выбраць усё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 77f09d130..f48766554 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Дневници @@ -742,11 +742,35 @@ Прегледайте регистрационните файлове за приложението и за проверка на имейл. + + 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 + + Покажи + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Възникна грешка при запазване на настройките. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлови задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Кошче @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Потребители & Групи @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Запазени изгледи @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Отворени документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Затвори всички @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Поща @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрация @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 е налично. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисни за преглед. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично да проверява за актуализации @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как работи това? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Налична актуализация @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Изгледите на страничната лента са актуализирани @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Грешка при актуализиране на изгледите на страничната лента @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Възникна грешка при запазване на настройките за проверка за актуализация. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Правилно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Грешно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Търсене в документи... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавете заявка @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавете израз @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Възникна грешка при зареждането на tiff: @@ -8670,6 +8694,14 @@ Избери всички + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Нищо - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Покажи - Sort diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index c66d62491..ee2cc3388 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Opcions @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registres @@ -742,11 +742,35 @@ Revisa els fitxers de registre de l'aplicació i per a la comprovació del correu electrònic. + + 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 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Error al guardar opcions. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tasques d'arxiu @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Brossa @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuaris i grups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentació @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistes guardades @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Obre document @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tanca-ho tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestiona @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correu @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administració @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuració @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 està disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliqueu per veure. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pot cercar actualitzacions automàticament @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Com funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualització disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistes laterals actualitzades @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error a l'actualitzar vistes laterals @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 S'ha produït un error en desar la configuració de comprovació d'actualitzacions. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vertader @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fals @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cerca docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Afegir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Afegir expressió @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressió fallida. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error carregant document per imprimir. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Error al carregar tiff: @@ -8670,6 +8694,14 @@ Selecciona tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Cap - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index a634ca5da..a1102aa48 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavení @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Záznamy @@ -742,11 +742,35 @@ Prohlédněte si soubory protokolu pro aplikaci a pro kontrolu e-mailů. + + 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 + + Zobrazit + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Při ukládání nastavení došlo k chybě. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Úlohy souborů @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Koš @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uživatelé a skupiny @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentace @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené pohledy @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otevřené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavřít vše @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Správa @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrace @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurace @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je k dispozici. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikněte pro zobrazení. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx umí automaticky kontrolovat aktualizace @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Je dostupná aktualizace @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Pohledy postranního panelu aktualizovány @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Chyba při aktualizaci pohledů postranního panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo k chybě při ukládání nastavení kontroly aktualizací. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Pravda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Nepravda @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Hledat dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Není @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Přidat dotaz @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Přidat výraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tisk selhal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Chyba při načítání dokumentu pro tisk. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo k chybě při načítání tiff: @@ -8669,6 +8693,14 @@ Vybrat vše + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Žádný - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Zobrazit - Sort diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 527a22bfd..c22f03785 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Indstillinger @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logninger @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gemte visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åbn dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Luk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrér @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgængelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik for at se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Opdatering tilgængelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Vælg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 5f6f40773..ff14fdc8b 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Einstellungen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokolle @@ -742,11 +742,35 @@ Überprüfen Sie die Protokolldateien für die Anwendung und den E-Mail-Abruf. + + 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 + + Anzeigen + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + Zeilen + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fehler beim Speichern der Einstellungen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dateiaufgaben @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papierkorb @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benutzer & Gruppen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespeicherte Ansichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Geöffnete Dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alle schließen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwaltung @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ist verfügbar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Zum Anzeigen klicken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kann automatisch auf Aktualisierungen überprüfen @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Wie funktioniert das? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualisierung verfügbar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Seitenleisten-Ansichten aktualisiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fehler beim Aktualisieren der Seitenleisten-Ansichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wahr @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Suche Dokumente... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nicht @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Abfrage hinzufügen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ausdruck hinzufügen @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Drucken fehlgeschlagen. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fehler beim Laden des Dokuments für den Druck. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fehler beim Laden des TIFF: @@ -8669,6 +8693,14 @@ Alles auswählen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Auswählen: + None @@ -8685,18 +8717,6 @@ 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 diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 4f870b0c4..48c78bc6b 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ρυθμίσεις @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Αρχεία Καταγραφής @@ -742,11 +742,35 @@ Ελέγξτε τα αρχεία καταγραφής για την εφαρμογή και για τον έλεγχο ηλεκτρονικού ταχυδρομείου. + + 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Εργασίες Αρχείων @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Κάδος απορριμμάτων @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Χρήστες & Ομάδες @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Τεκμηρίωση @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Αποθηκευμένες προβολές @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Άνοιγμα εγγράφων @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Κλείσιμο όλων @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Διαχείριση @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Αλληλογραφία @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 είναι διαθέσιμο. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Κάνε κλικ για προβολή. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Πώς λειτουργεί; @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Υπάρχει διαθέσιμη ενημέρωση @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Επιλογή όλων + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Κανένα - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 18437b419..c97136cb5 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ajustes @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registros @@ -742,11 +742,35 @@ Revise los archivos de registro de la aplicación y de la comprobación de correo electrónico. + + 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 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Se produjo un error al guardar los ajustes. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tareas de archivo @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papelera @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuarios & Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentación @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistas guardadas @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Cerrar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Organizar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correo @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administración @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuración @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Haz clic para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx puede comprobar automáticamente si hay actualizaciones @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ¿Cómo funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualización disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistas de la barra lateral actualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error al actualizar las vistas de la barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Se produjo un error al guardar la configuración de comprobación de actualizaciones. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Buscar documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Añadir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Añadir expresión @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Se ha producido un error al cargar el tif: @@ -8670,6 +8694,14 @@ Seleccionar todo + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ninguno - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 3c94db17e..3540ec928 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index e8ba1b4ba..c703ce79b 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 تنظیمات @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 سیاهه ها @@ -742,11 +742,35 @@ پرونده های ورود به سیستم را برای برنامه و برای بررسی ایمیل مرور کنید. + + 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 + + نشان دادن + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 هنگام صرفه جویی در تنظیمات ، خطایی روی داد. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 وظایف پرونده @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 زباله @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 مستند سازی @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 نماهای ذخیره شده @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 اسناد باز @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 همه را ببندید @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 مدیریت کردن @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 پست @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 تجویز @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 پیکربندی @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 لوب @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 موجود است @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 برای مشاهده کلیک کنید @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-NGX به طور خودکار می تواند به روزرسانی ها را بررسی کند @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 این چگونه کار می کند؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 به روز رسانی موجود است @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 نمای نوار کناری به روز شده است @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطا به روزرسانی نماهای نوار کناری @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 درست @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 دروغ @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 اسناد جستجو ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 نه @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 اضافه کردن پرس و جو @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 بیان را اضافه کنید @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ همه را انتخاب کنید + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ هیچ کدام - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - نشان دادن - Sort diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 9ae5fd4fc..9075d6e51 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Asetukset @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Lokit @@ -742,11 +742,35 @@ 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 + + Näytä + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Virhe tallennettaessa asetuksia. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tiedostotehtävät @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Käyttäjät & ryhmät @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentaatio @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tallennetut näkymät @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Avaa asiakirjat @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sulje kaikki @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hallitse @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Sähköposti @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Ylläpito @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 on saatavilla. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Näytä klikkaamalla. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx voi tarkistaa päivitykset automaattisesti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kuinka tämä toimii? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Päivitys saatavilla @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Virhe tallennettaessa päivitystarkistuksen asetuksia @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Valitse kaikki + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ei mitään - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Näytä - Sort diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 67882e212..439c2474f 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Paramètres @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Journaux @@ -742,11 +742,35 @@ Consultez les journaux de l'application ainsi que ceux des courriels. + + 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 + + Afficher + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Une erreur est survenue lors de la sauvegarde des paramètres. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tâches sur les fichiers @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Corbeille @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilisateurs & Groupes @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vues enregistrées @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Documents ouverts @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tout fermer @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestion @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Courriel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 est disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliquer pour visualiser. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Comment ça fonctionne ? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Mise à jour disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vues sur la barre latérale mises à jour @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erreur lors de la mise à jour des vues de la barre latérale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vrai @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Faux @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Rechercher un document... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Ajouter une requête @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ajouter une expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impression échouée. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erreur lors du chargement du document pour impression. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Une erreur s’est produite lors du chargement du tiff : @@ -8669,6 +8693,14 @@ Sélectionner tout + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Aucun - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Afficher - Sort diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 5a1a5e67e..06c337485 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 הגדרות @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 יומני רישום @@ -742,11 +742,35 @@ עיין בקובצי הלוג של היישום ולבדיקת דואר אלקטרוני. + + 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 + + הצג + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 התרחשה שגיאה בעת שמירת ההגדרות: @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 משימות קבצים @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 אשפה @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 משתמשים & קבוצות @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 תיעוד @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 תצוגות שמורות @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 מסמכים פתוחים @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 סגור הכל @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 נהל @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 דואר @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 ניהול @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 הגדרות @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 זמין. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 לחץ להצגה. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 איך זה עובד? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 קיים עדכון @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 תצוגת סרגל צד עודכנה @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 שגיאה בעדכון תצוגת סרגל צד @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 ארעה שגיאה בתהליך השמירה. בודק הגדרות @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 אמת @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 שקר @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 חפש מסמכים... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 לא @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 הוסף שאילתה @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 הוסף ביטוי @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 הדפסה נכשלה. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 שגיאה בעת טעינת קובץ tiff: @@ -8670,6 +8694,14 @@ בחר הכל + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ללא - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - הצג - Sort diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 3660bf2d5..093b08bee 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Postavke @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Zapisnici @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do pogreške prilikom spremanja postavki. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Zadaci datoteke @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Spremljeni prikazi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvoreni dokumenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori sve @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za prikaz. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski provjeriti aktualizaciju @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno ažuriranje @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do pogreške prilikom spremanja postavki ažuriranja. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ništa - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index f5ba7ad40..c08a74e95 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Beállítások @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Naplók @@ -742,11 +742,35 @@ Ellenőrizd az alkalmazás és az e-mail lekérdezés naplófájljait. + + 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 + + Mutat + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Hiba történt a beállítások mentése közben. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fájl feladatok @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lomtár @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Felhasználók & Csoportok @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentáció @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Mentett nézetek @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Dokumentumok megnyitása @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Bezár mindent @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kezelés @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Adminisztráció @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Beállítások @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 rendelkezésre áll. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kattintson a megtekintéshez. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hogyan működik ez? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Frissítés elérhető @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Oldalsáv nézetek frissítve @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Hiba az oldalsáv nézetek frissítésében @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Hiba történt a frissítési ellenőrzési beállítások mentése közben. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Igaz @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Hamis @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Keresés a doksiban... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nem @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Lekérdezés hozzáadása @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Kifejezés hozzáadása @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Hiba tiff betöltésekor: @@ -8670,6 +8694,14 @@ Összes kiválasztása + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nincs - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mutat - Sort diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 1c1b472a1..cf6db149e 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Pengaturan @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Silahkan lihat kembali log file aplikasi dan log 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 + + Tampilkan + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Sebuah kesalahan terjadi saat menyimpan setelan. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tugas File @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Sampah @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasi @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tampilan disimpan @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Buka dokumen @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tutup semua @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kelola @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Surel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasi @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasi @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 telah tersedia. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Ketuk untuk melihat. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx dapat secara otomatis memeriksa pembaruan @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bagaimana ini dapat bekerja? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pembaruan tersedia @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Tampilan bilah samping telah diperbarui @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kesalahan saat memperbarui tampilan sisi @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Benar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Salah @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cari dokumen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Tidak @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Tambah permintaan @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Tambah ekspresi @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Pencetakan gagal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error memuat dokumen untuk dicetak. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Terjadi kesalahan saat memuat tiff: @@ -8669,6 +8693,14 @@ Pilih semua + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Tidak ada - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Tampilkan - Sort diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 9b232f216..ac8918219 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Impostazioni @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Esaminare i file di registro per l'applicazione e per il controllo della posta elettronica. + + 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 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Si è verificato un errore durante il salvataggio delle impostazioni. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Attività File @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Cestino @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utenti & gruppi @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentazione @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Viste salvate @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Apri documenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Chiudi tutti @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestisci @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Amministrazione @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configurazione @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 è disponibile. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clicca per visualizzare. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx può controllare automaticamente la presenza di aggiornamenti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Come funziona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aggiornamento disponibile @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Viste barra laterale aggiornate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Errore nell'aggiornamento delle viste della barra laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Ricerca di documenti... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Aggiungi query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Aggiungi espressione @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Errore durante il caricamento della TIFF: @@ -8669,6 +8693,14 @@ Seleziona tutti + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Niente - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index d08e0b24b..3edc2a4a9 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 システム設定 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 ログ @@ -742,11 +742,35 @@ アプリケーションとメールチェックのログファイルを確認してください + + 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 + + 表示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 設定の保存中にエラーが発生しました @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ファイルタスク @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 ごみ箱 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ユーザー & グループ @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 マニュアル @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存済みビュー @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開いているドキュメント @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 すべて閉じる @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 ドキュメント管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 メール @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 システム管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 設定 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 が利用可能です。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 クリックして表示 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngxは自動的にアップデートを確認できます @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 アップデートの自動確認機能について @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 アップデートがあります。 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 サイドバービューを更新しました @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 サイドバービューの更新に失敗しました @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 アップデートの確認設定の保存中にエラーが発生しました @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 ドキュメントを検索... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 クエリの追加 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 式の追加 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 TIFFの読み込み中にエラーが発生しました: @@ -8669,6 +8693,14 @@ すべて選択 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ なし - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 表示 - Sort diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 8e280e4c1..cdf1d8696 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 설정 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 로그 @@ -742,11 +742,35 @@ 애플리케이션 및 이메일 확인을 위한 로그 파일을 검토합니다. + + 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 + + 표시 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 설정을 저장하는 중 오류가 발생하였습니다. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 1 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 휴지통 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 사용자 & 그룹 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 문서 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 저장된 보기 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 문서 열기 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 모두 닫기 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 관리 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 메일 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 관리 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 환경설정 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 사용 가능함 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 클릭해서 보기. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다. @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 어떻게 작동할까요? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 업데이트 가능 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 사이드바 업데이트 완료 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 사이드바 업데이트 중 오류가 발생했습니다 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 설정을 저장하는 중 오류가 발생하였습니다. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 거짓 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 문서 검색... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 아님 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 쿼리 추가 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 표현식 추가 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 tiff를 로드하는 동안 오류가 발생했습니다: @@ -8670,6 +8694,14 @@ 전체 선택 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ 없음 - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 표시 - Sort diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 6bff23785..0a7d1db8a 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Astellungen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokoller @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Beim Späichere vun den Astellungen ass ee Feeler opgetrueden. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datei Jobs @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Pabeierkuerf @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benotzer & Gruppen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentatioun @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespäichert Usiichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Oppen Dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 All zoumaachen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwalten @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ass disponibel. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicke fir unzeweisen. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update disponibel @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Säiteleeschten-Usiichten aktualiséiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wouer @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Dokumenter sichen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Alles auswielen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index a0252b1bc..709f826ab 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nustatymai @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Žurnalai @@ -742,11 +742,35 @@ Peržiūrėkite žurnalo failus apie aplikaciją ir el. pašto patikrą. + + 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 00273213b..993cf0b42 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Iestatījumi @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Notikumu žurnāli @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentācija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saglabātais skats @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Atvērt dokumentus @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Aizvērt visu @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Pārvaldīt @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pasts @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrācija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurācija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pieejams atjauninājums @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Atzīmēt visu + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Neviens - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 0b9d66516..249650d43 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 7b202423e..960fd6a2a 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellingen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logbestanden @@ -742,11 +742,35 @@ Bekijk de logbestanden voor de applicatie en voor het ophalen van e-mails. + + 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 + + Toon + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Er is een fout opgetreden bij het opslaan van de instellingen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Bestandstaken @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Prullenbak @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & groepen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Handleiding @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Opgeslagen weergaven @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documenten @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alles sluiten @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Beheren @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Beheer @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuratie @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beschikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekijken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisch controleren op updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werkt dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update beschikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zijbalkweergaven bijgewerkt @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fout tijdens bijwerken van zijbalkweergaven @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Waar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Onwaar @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Zoek documenten... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Niet @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Zoekopdracht toevoegen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Expressie toevoegen @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Printen mislukt. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fout bij laden van document voor printen. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fout bij het laden van tiff: @@ -8669,6 +8693,14 @@ Alles selecteren + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Toon - Sort diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 2b71a796e..4e21185b7 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Innstillinger @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logger @@ -742,11 +742,35 @@ Se gjennom loggfilene for applikasjonen og for sjekk av e-post. + + 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 + + Vis + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Det oppstod en feil under lagring av innstillingene. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fil oppgaver @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papirkurv @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Brukere & Grupper @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasjon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lagrede visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åpne dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Lukk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Behandle @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasjon @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasjon @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgjengelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikk for å se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisk sjekke etter oppdateringer @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hvordan fungerer dette? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Oppdatering er tilgjengelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidepanel visning oppdatert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feil ved oppdatering av sidepanelet @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Det oppstod en feil under lagring av innstillinger for oppdatering. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Velg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Vis - Sort diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 2ce0114d4..f91f903c9 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ustawienia @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dziennik @@ -742,11 +742,35 @@ Przeglądaj pliki logów dla aplikacji i dla procesu sprawdzania wiadomości e-mail. + + 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 + + Pokaż + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Wystąpił błąd podczas zapisywania ustawień. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Operacje na plikach @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kosz @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Użytkownicy i Grupy @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacja @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Zapisane widoki @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otwarte dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zamknij wszystkie @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Zarządzaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Poczta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracja @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracja @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 jest dostępny. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kliknij, aby zobaczyć. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to działa? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizacja jest dostępna @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zaktualizowano widoki bocznego panelu @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Błąd podczas aktualizacji widoków bocznego panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Prawda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fałsz @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Wyszukaj dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nie @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj zapytanie @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj wyrażenie @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Błąd drukowania. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Błąd ładowania dokumentu do wydruku. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Wystąpił błąd podczas ładowania pliku TIFF: @@ -8669,6 +8693,14 @@ Zaznacz wszystko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Brak - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Pokaż - Sort diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index e76420c67..80157c66f 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Revise os arquivos de log para o aplicativo e para verificação de e-mail. + + 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 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao salvar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Arquivo @@ -2124,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Erro ao ignorar tarefas Error dismissing task @@ -2132,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Erro ao ignorar tarefa queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lixeira @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuários & Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerenciar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Personalização @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para visualizar. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pode verificar atualizações automaticamente @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ocorreu um erro ao salvar as verificações de atualizações. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Procura documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Adicionar consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -5216,7 +5240,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 183 - Advanced Filters + Filtros Avançados Add filter @@ -5224,7 +5248,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 190 - Add filter + Adicionar filtro No advanced workflow filters defined. @@ -5232,7 +5256,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 195 - No advanced workflow filters defined. + Nenhum filtro avançado de fluxo de trabalho definido. Complete the custom field query configuration. @@ -5240,7 +5264,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 224,226 - Complete the custom field query configuration. + Conclua a configuração da consulta de campo personalizado. Action type @@ -5620,7 +5644,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Possui alguma destas etiquetas Has all of these tags @@ -5628,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Possui estas etiquetas Does not have these tags @@ -5636,7 +5660,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Não possui estas etiquetas Has correspondent @@ -5652,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Não possui correspondentes Has document type @@ -5668,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Não possui tipos de documento Has storage path @@ -5684,7 +5708,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Não possui caminhos de armazenamento Matches custom field query @@ -5692,7 +5716,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Corresponde à consulta de campo personalizado Create new workflow @@ -5716,7 +5740,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {Enviar documento por e-mail} other {Email Documentos}} Email address(es) @@ -5768,7 +5792,8 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Alguns servidores de e-mail podem rejeitar mensagens com anexos grandes. +Erro ao enviar documentos por e-mail Email sent @@ -5784,7 +5809,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Erro ao enviar documentos por e-mail Error emailing document @@ -5947,7 +5972,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8031,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressão falhou. @@ -8014,7 +8039,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erro ao carregar o documento para impressão. @@ -8022,11 +8047,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Ocorreu um erro ao carregar tiff: @@ -8670,6 +8695,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8719,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort @@ -9572,7 +9593,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Ver e-mails processados No mail rules defined. @@ -9776,7 +9797,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + E-mails processados para No processed email messages found. @@ -9784,7 +9805,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nenhuma mensagem de e-mail processada encontrada. Received @@ -9792,7 +9813,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Recebido Processed @@ -9800,7 +9821,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Processado Processed mail(s) deleted @@ -9808,7 +9829,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + E-mail(s) processado(s) excluído(s) Filter by: diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 836d331f7..68f13e7fb 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registos @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao gravar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Ficheiro @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Reciclagem @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizadores e Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerir @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Email @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Customizações @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 O Paperless-ngx pode verificar automaticamente por atualizações @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como é que isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index b3a2f5558..8f695339e 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Setări @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Jurnale @@ -742,11 +742,35 @@ Uitați-vă la fișierele de log-uri pentru aplicație si verificarea email-ului. + + 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 + + Arată + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizatori & Grupuri @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentație @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vizualizări @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Deschide documente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Închide tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrează @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrare @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 este disponibilă. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click pentru a vizualiza. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Sistemul poate verifica automat actualizările @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cum funcţionează? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualizare disponibilă @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vizualizări bară laterală actualizate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Eroare la actualizarea vizualizărilor barei laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Selectează tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Arată - Sort diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index a5c432a9d..c3df92c26 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Просмотрите файлы журналов для приложения и для проверки электронной почты. + + 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 + + Показать + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Произошла ошибка при сохранении настроек. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файловые задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Корзина @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Пользователи и группы @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Представления @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Открыть документы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыть всё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Почта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрирование @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 доступно. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Нажмите для просмотра. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx может автоматически проверять наличие обновлений @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как это работает? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступно обновление @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Обновлена боковая панель @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Ошибка при обновлении боковой панели @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Произошла ошибка при сохранении настроек проверки обновлений. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Верно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Ложное @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Поиск документов... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавить запрос @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавить выражение @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -7030,7 +7054,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Подключение WebSocket OK @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Произошла ошибка при загрузке tiff: @@ -8669,6 +8693,14 @@ Выбрать всё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Отсутствует - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показать - Sort @@ -9807,7 +9827,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Обработанная почта удалена Filter by: diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index cc1582234..ffd1b6eec 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavenia @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logy @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Pri ukladaní nastavení sa vyskytla chyba. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Súborové úlohy @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kôš @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Používatelia a skupiny @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentácia @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené zobrazenia @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavrieť všetky @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Spravovať @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrácia @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurácia @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupný. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni pre zobrazenie. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx môže automaticky kontrolovať aktualizácie @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Ako to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizácia je k dispozícii @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Vybrať všetko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Žiadny - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index de3b6838a..c1ece21d0 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavitve @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dnevniki @@ -742,11 +742,35 @@ Preglejte dnevniške datoteke za preverjanje aplikacije in e-pošte. + + 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 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Prišlo je do napake ob shranjevanju nastavitev. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datotečne naloge @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Smetnjak @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uporabniki & Skupine @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Shranjeni pogledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Odpri dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zapri vse @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je na voljo. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za ogled. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx lahko samodejno preveri za posodobitve @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako to deluje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Posodobitev na voljo @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Posodobljeni pogledi v stranski vrstici @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Napaka pri posodabljanju pogledov v stranski vrstici @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Resnično @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Neresnično @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Išči dokumente ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ne @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj poizvedbo @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tiskanje ni uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Napaka pri nalaganju dokumenta za tiskanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Pri nalaganju datoteke tiff je prišlo do napake: @@ -8670,6 +8694,14 @@ Izberite vse + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Brez - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 4ccfd9626..7b27e72ed 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Podešavanja @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logovi @@ -742,11 +742,35 @@ Pregledajte logove za aplikaciju i za proveru imejla. + + 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 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do greške prilikom čuvanja podešavanja. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Obrada dokumenata @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Otpad @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Korisnici i Grupe @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sačuvani pregledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorena dokumenta @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori svе @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljanje @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Imejl @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik za prеglеd. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski da proveri da li postoje ažuriranja @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno jе ažuriranjе @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Prikazi bočne trake su ažurirani @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Greška pri ažuriranju prikaza bočne trake @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do greške prilikom čuvanja podešavanja. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Tačno @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Netačno @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Pretraži dokumenta... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nije @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj upit @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Štampanje nije uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Greška pri učitavanju dokumenta za štampanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo je do greške prilikom učitavanja TIFF-a: @@ -8671,6 +8695,14 @@ Odaberi sve + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8687,18 +8719,6 @@ Nijedan - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 5060b58d9..d6a80d948 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Inställningar @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Loggar @@ -742,11 +742,35 @@ Granska loggfilerna för programmet och för e-postkontroll. + + 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 + + Visa + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ett fel inträffade när inställningarna skulle sparas. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Filuppgifter @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papperskorg @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Användare & Grupper @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sparade vyer @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Öppna dokument @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Stäng alla @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hantera @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 är tillgänglig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicka för att visa. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatiskt söka efter uppdateringar @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hur fungerar detta? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Uppdatering tillgänglig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ett fel uppstod när uppdateringskontrollen skulle sparas. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Sant @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falskt @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ej @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Välj alla + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Visa - Sort diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index f6ce0c918..e1d2f53c6 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 การตั้งค่า @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 รายการงาน @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ผู้ใช้งาน & กลุ่ม @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 เอกสารอ้างอิง @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 การค้นที่เก็บไว้ @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 เปิดเอกสาร @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 ปิดทั้งหมด @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 จัดการ @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 เมล @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 การจัดการระบบ @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ใช้งานได้ @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 คลิกเพื่อดู @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ระบบนี้ทำงานยังไง? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 มีการอัพเดท @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ เลือกทั้งหมด + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ไม่มี - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index f9e4d3011..784b4fc79 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ayarlar @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Günlükler @@ -742,11 +742,35 @@ Uygulama ve e-posta kontrolü için günlük dosyalarını inceleyin. + + 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 - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ayarlar kaydedilirken bir hata oluştu. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dosya Görevleri @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Çöp kutusu @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Kullanıcılar & Gruplar @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokümantasyon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Kaydedilen görünümler @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Belgeleri aç @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tümünü kapat @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Yönet @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Posta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Yönetici @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Yapılandırma @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 kullanılabilir. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Görüntülemek için tıklayın. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx güncellemeleri otomatik olarak kontrol edebilir @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bu nasıl çalışıyor? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Güncelleme mevcut @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Kenar çubuğu görünümleri güncellendi @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kenar çubuğu görünümlerini güncellerken hata oluştu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Güncelleme denetimi ayarları kaydedilirken bir hata oluştu. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Doğru @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Yanlış @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Belgelerde ara... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Değil @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Sorgu Ekle @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 İfade Ekle @@ -5949,7 +5973,7 @@ tüm krite src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8008,7 +8032,7 @@ tüm krite Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8016,7 +8040,7 @@ tüm krite Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8024,11 +8048,11 @@ tüm krite An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8672,6 +8696,14 @@ tüm krite Tümünü seç + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8688,18 +8720,6 @@ tüm krite Yok - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 7c538361e..e6d8452d4 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Налаштування @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Переглянути файли журналу для програми та перевірки пошти. + + 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 + + Показувати + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Сталися помилки при збереженні налаштувань. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Обробка файлів @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Смітник @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Користувачі та групи @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документація @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Збережені представлення @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Відкрити документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрити все @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Керування @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Ел. пошта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Адміністрування @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Налаштування @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 є доступним для оновлення. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисніть для перегляду. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично перевіряти наявність оновлень @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як це працює? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступне оновлення @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Представлення бічної панелі оновлено @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Помилка оновлення представлень бічної панелі @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Сталася помилка при збереженні налаштувань для перевірки оновлень. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Вірно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Невірно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Шукати в документації... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Додати запит @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Додати вираз @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Вибрати всі + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Немає - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показувати - Sort diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index a0bc894e3..3dd3d0a02 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -410,11 +410,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -432,11 +432,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -482,11 +482,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Cài đặt @@ -862,11 +862,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Nhật ký @@ -882,11 +882,37 @@ Xem lại log của ứng dụng và kiểm tra email. + + 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 + + + Trình diễn + + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -900,11 +926,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1303,11 +1329,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -2007,7 +2033,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Đã xảy ra lỗi khi lưu các thiết lập. @@ -2021,11 +2047,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tác vụ tệp @@ -2547,11 +2573,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Thùng rác @@ -2988,11 +3014,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Người dùng và Nhóm @@ -3415,11 +3441,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Tài liệu tham khảo @@ -3429,11 +3455,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lượt xem đã lưu @@ -3443,7 +3469,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Mở tài liệu @@ -3453,11 +3479,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Đóng tất cả @@ -3467,7 +3493,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Quản lý @@ -3477,11 +3503,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3495,11 +3521,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3533,11 +3559,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3551,11 +3577,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3569,11 +3595,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3591,11 +3617,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3609,11 +3635,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Thư @@ -3623,7 +3649,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Quản trị @@ -3633,11 +3659,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Cấu hình @@ -3647,7 +3673,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3657,7 +3683,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 đã có sẵn. @@ -3667,7 +3693,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Nhấp để xem. @@ -3677,7 +3703,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx có thể tự động check update @@ -3687,7 +3713,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cách thức hoạt động? @@ -3697,7 +3723,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Có bản cập nhật @@ -3707,7 +3733,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Đã cập nhật các views sidebar @@ -3717,7 +3743,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Lỗi cập nhật các views sidebar @@ -3727,7 +3753,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Đã có lỗi khi lưu các thiết lập kiểm tra cập nhật. @@ -4291,11 +4317,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 ĐÚNG VẬY @@ -4309,11 +4335,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 SAI @@ -4323,11 +4349,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Tài liệu tìm kiếm ... @@ -4337,7 +4363,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4351,7 +4377,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4381,7 +4407,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Không @@ -4391,7 +4417,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Thêm truy vấn @@ -4401,7 +4427,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Thêm biểu thức @@ -6988,7 +7014,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -9450,7 +9476,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -9458,7 +9484,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -9466,11 +9492,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Đã xảy ra lỗi tải TIFF: @@ -10246,6 +10272,14 @@ Chọn tất cả + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -10262,20 +10296,6 @@ Không có - - - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - - Trình diễn diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 072798527..5bf7bef8e 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 设置 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 日志 @@ -742,11 +742,35 @@ 检查应用程序和电子邮件检查日志文件。 + + 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 + + 显示列 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 保存设置时发生错误。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 文件任务 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 回收站 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 用户 & 组 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 帮助文档 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存视图 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 打开文档 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 全部关闭 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 邮件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可用 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 点击查看 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自动检查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 这是如何运作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 侧边栏视图已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新侧边栏视图时发生错误 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 保存更新检查设置时发生错误。 @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜索文档... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 添加查询 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 添加表达式 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 打印失败。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 加载打印文档时出错。 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 加载内容时发生错误: @@ -8669,6 +8693,14 @@ 全选 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 显示列 - Sort diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 89cc5bb01..2e1c2feca 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 設定 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 事件記錄 @@ -742,11 +742,35 @@ 檢閱應用程式和電子郵件檢查的事件紀錄。 + + 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 + + 顯示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 儲存設定時發生錯誤。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 檔案任務 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 垃圾桶 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 使用者與群組 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 說明文件 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 已儲存的檢視表 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開啟文件 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 關閉全部 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 文件管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 郵件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 系統管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 系統配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可供更新。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 點擊以顯示。 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自動檢查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 這是怎麼運作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 側邊欄顯示方式已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新側邊欄顯示方式時發生錯誤 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 儲存檢查更新設定時發生錯誤。 @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜尋文件⋯ @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 不是 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 新增查詢 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 新增表達式 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 列印失敗。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 載入列印文件時發生錯誤 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 讀取 TIFF 檔時發生錯誤: @@ -8670,6 +8694,14 @@ 選取全部 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 顯示 - Sort diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index f452426e4..8b5a81ae7 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"PO-Revision-Date: 2025-11-03 17:49\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 90d431380..9c071f8d6 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-10-30 23:37\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -47,7 +47,7 @@ msgstr "{name!r} não é um campo personalizado válido." #: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." -msgstr "{data_type} não suporta a consulta expr {expr!r}." +msgstr "{data_type} Não suporta a consulta expr {expr!r}." #: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." @@ -450,7 +450,7 @@ msgstr "pesquisa de texto completo" #: documents/models.py:526 msgid "more like this" -msgstr "Mais como este" +msgstr "mais como este" #: documents/models.py:527 msgid "has tags in" @@ -859,11 +859,11 @@ msgstr "Possui estas etiquetas" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "possui toda(s) esta(s) etiqueta(s)" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "não possui esta(s) etiqueta(s)" #: documents/models.py:1087 msgid "has this document type" @@ -871,7 +871,7 @@ msgstr "Possui este tipo de documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "não possui este(s) tipo(s) de documento" #: documents/models.py:1102 msgid "has this correspondent" @@ -879,7 +879,7 @@ msgstr "Possui este correspondente" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "não possui este(s) correspondente(s)" #: documents/models.py:1117 msgid "has this storage path" @@ -887,15 +887,15 @@ msgstr "possui este caminho de armazenamento" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "não possui este(s) caminho(s) de armazenamento" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "Filtrar consulta de campo personalizado" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Expressão de consulta de campo personalizado codificada em JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1270,7 +1270,7 @@ msgstr "Olá de %(site_name)s!" #, python-format msgid "Thank you for using %(site_name)s!\n" "%(site_domain)s" -msgstr "Obrigado por usar %(site_name)s!\n" +msgstr "Obrigado por usar %(site_name)s!\n" "%(site_domain)s" #: documents/templates/account/login.html:5 @@ -1313,7 +1313,7 @@ msgstr "ou conecte-se com" #: documents/templates/account/password_reset.html:5 msgid "Paperless-ngx reset password request" -msgstr "Redefinição de senha Paperless-ngx" +msgstr "Solicitação de redefinição de senha Paperless-ngx" #: documents/templates/account/password_reset.html:9 msgid "Enter your email address below, and we'll email instructions for setting a new one." diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index dc90bc519..772203662 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-11-01 20:24\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -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/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 921a97ab7..a209932dc 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-10-30 23:37\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -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." From 810bf3d612e73ab0731f21ab3c8671c5b2fd9b43 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:54:43 -0800 Subject: [PATCH 07/10] Fix: fix log loading spinner display condition --- src-ui/src/app/components/admin/logs/logs.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index bdc80583f..70dcda86d 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -47,7 +47,7 @@ itemSize="20" class="bg-dark p-3 text-light font-monospace log-container" #logContainer> - @if (loading && logFiles.length) { + @if (loading && !logFiles.length) {
Loading... From a0172a27540bcfd04400b9cbce0a4e20a2c0a041 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:01:45 -0800 Subject: [PATCH 08/10] Chore: fix test error --- .../src/app/components/common/input/tags/tags.component.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts index 84f1c4817..ae543075e 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts @@ -106,6 +106,7 @@ describe('TagsComponent', () => { modalService = TestBed.inject(NgbModal) settingsService = TestBed.inject(SettingsService) + settingsService.currentUser = { id: 1 } fixture = TestBed.createComponent(TagsComponent) fixture.debugElement.injector.get(NG_VALUE_ACCESSOR) component = fixture.componentInstance From fe3c424d7d309d40c47314e745b393a6d010d0fb Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:02:09 -0800 Subject: [PATCH 09/10] Bump version to 2.19.4 --- pyproject.toml | 2 +- src-ui/package.json | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6be06907c..2b7685ac6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.3" +version = "2.19.4" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/package.json b/src-ui/package.json index 2589a048c..e49d4289b 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.3", + "version": "2.19.4", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 251fe1899..923e6be38 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.3', + version: '2.19.4', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index e522208a2..cf87791f6 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 3) +__version__: Final[tuple[int, int, int]] = (2, 19, 4) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 84ff2e5a1..2157b31aa 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.3" +version = "2.19.4" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From 74f72e417d5e37033e7122460650496e8b02dd75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:39:28 -0800 Subject: [PATCH 10/10] Documentation: Add v2.19.4 changelog (#11285) * Changelog v2.19.4 - GHA * Update changelog for paperless-ngx 2.19.4 Reorganize changelog to include performance enhancements. --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/changelog.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 296d30f7a..7f51cb04e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,41 @@ # Changelog +## paperless-ngx 2.19.4 + +### Bug Fixes + +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) + +### Performance + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) + +### All App Changes + +
+11 changes + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) +- Chore: cache Github version check for 15 minutes [@shamoon](https://github.com/shamoon) ([#11235](https://github.com/paperless-ngx/paperless-ngx/pull/11235)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) +
+ ## paperless-ngx 2.19.3 ### Bug Fixes